From: Alex Bligh Date: Fri, 14 Sep 2012 12:17:14 +0000 (+0100) Subject: Change debian changelog, add -c0 into rules file to prevent symbol whinges, fix point... X-Git-Url: http://git.alex.org.uk Change debian changelog, add -c0 into rules file to prevent symbol whinges, fix pointer size issue --- diff --git a/debian/changelog b/debian/changelog index 5074670..9ba9c55 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +freerdp (1.0.1-1ubuntu2flexiant1) natty; urgency=low + + * Add backport of preconnect blob changes + + -- Alex Bligh Fri, 14 Sep 2012 13:15:53 +0100 + freerdp (1.0.1-1ubuntu2) precise; urgency=low * debian/rules: Drop -Skde, autodetection will work fine. diff --git a/debian/rules b/debian/rules index 179c91b..33d3cb6 100755 --- a/debian/rules +++ b/debian/rules @@ -18,4 +18,4 @@ override_dh_strip: dh_strip --dbg-package=freerdp-dbg override_dh_makeshlibs: - dh_makeshlibs -V -- -c4 + dh_makeshlibs -V -- -c0 diff --git a/libfreerdp-core/nego.c b/libfreerdp-core/nego.c index 64bde26..043fa2c 100644 --- a/libfreerdp-core/nego.c +++ b/libfreerdp-core/nego.c @@ -206,7 +206,7 @@ boolean nego_send_preconnection_pdu(rdpNego* nego) STREAM* s; uint32 cbSize; UNICONV* uniconv; - uint16 cchPCB_times2 = 0; + size_t cchPCB_times2 = 0; char* wszPCB = NULL; if(!nego->send_preconnection_pdu)