summaryrefslogtreecommitdiff
path: root/source3/lib/charcnv.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-07-04 14:41:06 +0000
committerAndrew Tridgell <tridge@samba.org>2001-07-04 14:41:06 +0000
commit681c3100ed4d917edb91d1acd715b25b6f2702a9 (patch)
treecfeb3c29634fd7f77d68f3803fcd638c4df72a68 /source3/lib/charcnv.c
parent33b550e47ba63782f7a35af265b0b452a9c426dd (diff)
downloadsamba-681c3100ed4d917edb91d1acd715b25b6f2702a9.tar.gz
samba-681c3100ed4d917edb91d1acd715b25b6f2702a9.tar.bz2
samba-681c3100ed4d917edb91d1acd715b25b6f2702a9.zip
more portability fixes
(This used to be commit bf818268516cfbebcdeacbb0528395e9bbb8e442)
Diffstat (limited to 'source3/lib/charcnv.c')
-rw-r--r--source3/lib/charcnv.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/lib/charcnv.c b/source3/lib/charcnv.c
index 154e9971e5..bec34c0d41 100644
--- a/source3/lib/charcnv.c
+++ b/source3/lib/charcnv.c
@@ -92,7 +92,9 @@ static size_t convert_string(smb_iconv_t descriptor,
DEBUG(0, ("Required %d, available %d\n",
srclen, destlen));
break;
+#ifdef EILSEQ
case EILSEQ: reason="Illegal myltybyte sequence"; break;
+#endif
}
DEBUG(0,("Conversion error:%s(%s)\n",reason,inbuf));
/* smb_panic(reason); */