diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/bbsmail.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/bbsmail.c b/util/bbsmail.c index 7e0ceb69..a58d5763 100644 --- a/util/bbsmail.c +++ b/util/bbsmail.c @@ -72,6 +72,9 @@ mailog(msg) } } +#ifdef USE_ICONV +void str_decode_M3(unsigned char *str); +#endif int mail2bbs(char *userid) { @@ -113,7 +116,6 @@ int mail2bbs(char *userid) if( strncmp(genbuf, "Subject: ", 9) == 0 ){ strlcpy(title, genbuf + 9, sizeof(title)); #ifdef USE_ICONV - void str_decode_M3(unsigned char *str); str_decode_M3(title); #endif continue; |