summaryrefslogtreecommitdiff
path: root/net-misc/smbc/files/smbc-1.2.2-size_t.patch
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/smbc/files/smbc-1.2.2-size_t.patch')
-rw-r--r--net-misc/smbc/files/smbc-1.2.2-size_t.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/net-misc/smbc/files/smbc-1.2.2-size_t.patch b/net-misc/smbc/files/smbc-1.2.2-size_t.patch
new file mode 100644
index 000000000000..cafaf4a1b713
--- /dev/null
+++ b/net-misc/smbc/files/smbc-1.2.2-size_t.patch
@@ -0,0 +1,16 @@
+Patch to enable running on amd64 (borrowed from http://bugs.debian.org/366580)
+
+--- a/src/convert.c
++++ b/src/convert.c
+@@ -98,8 +98,9 @@
+
+ char *inbuf = (char*) src;
+ char *outbuf = param->dst;
+- int inbytesleft = src_len - 1;
+- int outbytesleft = param->dst_len - 1;
++ /* iconv requires size_t and not int ! */
++ size_t inbytesleft = src_len - 1;
++ size_t outbytesleft = param->dst_len - 1;
+ bzero(param->dst, param->dst_len);
+ // Need some error handling here
+ iconv(param->cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);