aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorentropy <entropy@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-09-15 19:06:47 +0000
committerentropy <entropy@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-09-15 19:06:47 +0000
commit7b0179a4d3a7e4cfd9e3aa6d5c73965e70d530a0 (patch)
tree69ced489b95b42989401abfb885aae18fcecbcaf
parent7bbad480a28698f235dce8630b2a37d41abf72f7 (diff)
downloadlcd4linux-7b0179a4d3a7e4cfd9e3aa6d5c73965e70d530a0.tar.gz
[lcd4linux @ 2006-09-15 19:06:47 by entropy]
debug spam reduced, comment typo fixed git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@718 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
-rw-r--r--plugin_iconv.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/plugin_iconv.c b/plugin_iconv.c
index b21d70b..b55e562 100644
--- a/plugin_iconv.c
+++ b/plugin_iconv.c
@@ -1,4 +1,4 @@
-/* $Id: plugin_iconv.c,v 1.1 2006/09/15 19:00:50 entropy Exp $
+/* $Id: plugin_iconv.c,v 1.2 2006/09/15 19:06:47 entropy Exp $
*
* iconv charset conversion plugin
*
@@ -23,6 +23,9 @@
*
*
* $Log: plugin_iconv.c,v $
+ * Revision 1.2 2006/09/15 19:06:47 entropy
+ * debug spam reduced, comment typo fixed
+ *
* Revision 1.1 2006/09/15 19:00:50 entropy
* iconv charset converter plugin
*
@@ -57,7 +60,7 @@
/* iconv function, convert charsets */
-/* valid "to" and "from" charsets can be listed by running "iconv -list" from a shell */
+/* valid "to" and "from" charsets can be listed by running "iconv --list" from a shell */
/* utf16 & utf32 encodings won't work, as they contain null bytes, confusing strlen */
static void my_iconv(RESULT * result, RESULT * charset_from, RESULT * charset_to, RESULT * arg)
{
@@ -83,7 +86,8 @@ static void my_iconv(RESULT * result, RESULT * charset_from, RESULT * charset_to
if (cd != (iconv_t) (-1)) {
do {
- debug("plugin_iconv: calling iconv with %ld,[%s]/%ld,%ld", cd, source, source_left, dest_left);
+
+ /* quite spammy: debug("plugin_iconv: calling iconv with %ld,[%s]/%ld,%ld", cd, source, source_left, dest_left); */
if (iconv(cd, &source, &source_left, &dest_pos, &dest_left) == (size_t) (-1)) {
switch (errno) {
case EILSEQ:
n173' href='#n173'>173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206