]> arthur.barton.de Git - ngircd.git/blobdiff - src/ngircd/conn-encoding.c
Update #include's: remove unused and add missing ones
[ngircd.git] / src / ngircd / conn-encoding.c
index 71ab58848a5aa87d258f85156ab98021d5c0cd7a..8bce3d2e629d90683d312905c81b24fe6df6e55c 100644 (file)
  * Functions to deal with character encodings and conversions
  */
 
-#include "imp.h"
 #include <assert.h>
 #include <stdio.h>
 #include <string.h>
+#include <strings.h>
 
-#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.
  *
@@ -123,9 +119,9 @@ Convert_Message(iconv_t Handle, char *Message)
        out_left = sizeof(Encoding_Buffer) - 1;
 
        if (iconv(Handle, &Message, &in_left, &out, &out_left) == (size_t)(-1)) {
-               /* An error occured! */
+               /* 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.