diff options
Diffstat (limited to 'imap/src/osdep/unix/nl_unix.c')
-rw-r--r-- | imap/src/osdep/unix/nl_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imap/src/osdep/unix/nl_unix.c b/imap/src/osdep/unix/nl_unix.c index b2d5616a..5ae96b08 100644 --- a/imap/src/osdep/unix/nl_unix.c +++ b/imap/src/osdep/unix/nl_unix.c @@ -46,7 +46,7 @@ unsigned long strcrlfcpy (unsigned char **dst,unsigned long *dstl, if (i > *dstl) fs_give ((void **) dst); } /* make a new buffer if needed */ - if (!*dst) *dst = (char *) fs_get ((*dstl = i) + 1); + if (!*dst) *dst = (unsigned char *) fs_get ((*dstl = i) + 1); d = *dst; /* destination string */ if (srcl) do { /* main copy loop */ if ((c = *src++) < '\016') { |