From 681c3100ed4d917edb91d1acd715b25b6f2702a9 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 4 Jul 2001 14:41:06 +0000 Subject: more portability fixes (This used to be commit bf818268516cfbebcdeacbb0528395e9bbb8e442) --- source3/lib/charcnv.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/lib/charcnv.c') 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); */ -- cgit