diff options
Diffstat (limited to 'lib/misc.c')
| -rw-r--r-- | lib/misc.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| @@ -33,6 +33,7 @@  #define BITLBEE_CORE  #include "nogaim.h"  #include "base64.h" +#include "md5.h"  #include <stdio.h>  #include <stdlib.h>  #include <string.h> @@ -88,6 +89,7 @@ static const htmlentity_t ent[] =  	{ "lt",     "<" },  	{ "gt",     ">" },  	{ "amp",    "&" }, +	{ "apos",   "'" },  	{ "quot",   "\"" },  	{ "aacute", "á" },  	{ "eacute", "é" }, @@ -521,7 +523,7 @@ struct ns_srv_reply *srv_lookup( char *service, char *protocol, char *domain )  }  /* Word wrapping. Yes, I know this isn't UTF-8 clean. I'm willing to take the risk. */ -char *word_wrap( char *msg, int line_len ) +char *word_wrap( const char *msg, int line_len )  {  	GString *ret = g_string_sized_new( strlen( msg ) + 16 ); | 
