X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Fconn-encoding.c;h=412a85dcb297117d0801b07d85de3ead26667155;hb=dc6807338e240d8093f43337dab7bfe488c35c4a;hp=98cd29a367047323d1633f57f2473443075215d9;hpb=15dfdaac823c5927b096b2980753a6198a6a7741;p=ngircd-alex.git diff --git a/src/ngircd/conn-encoding.c b/src/ngircd/conn-encoding.c index 98cd29a3..412a85dc 100644 --- a/src/ngircd/conn-encoding.c +++ b/src/ngircd/conn-encoding.c @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2012 Alexander Barton (alex@barton.de) and Contributors. + * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -20,25 +20,21 @@ * Functions to deal with character encodings and conversions */ -#include "imp.h" #include #include #include +#include -#include "defines.h" #include "conn.h" -#include "log.h" - -#include "exp.h" -#include "conn-encoding.h" #ifdef ICONV -char Encoding_Buffer[COMMAND_LEN]; +#include "log.h" +#include "conn-encoding.h" +char Encoding_Buffer[COMMAND_LEN]; char *Convert_Message PARAMS((iconv_t Handle, char *Message)); - /** * Set client character encoding on a connection. * @@ -125,7 +121,7 @@ Convert_Message(iconv_t Handle, char *Message) if (iconv(Handle, &Message, &in_left, &out, &out_left) == (size_t)(-1)) { /* An error occurred! */ LogDebug("Error converting message encoding!"); - strlcpy(Encoding_Buffer, Message, sizeof(Encoding_Buffer)); + strlcpy(out, Message, sizeof(Encoding_Buffer)); iconv(Handle, NULL, NULL, NULL, NULL); } else *out = '\0'; @@ -133,7 +129,7 @@ Convert_Message(iconv_t Handle, char *Message) return Encoding_Buffer; } -#endif +#endif /* ICONV */ /** * Convert encoding of a message received from a connection.