Changes in / [c511365:3933853]
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
conf.h
rc511365 r3933853 51 51 } conf_t; 52 52 53 G_GNUC_MALLOCconf_t *conf_load( int argc, char *argv[] );53 conf_t *conf_load( int argc, char *argv[] ); 54 54 void conf_loaddefaults( irc_t *irc ); 55 55 -
crypting.h
rc511365 r3933853 25 25 26 26 int checkpass (const char *password, const char *md5sum); 27 G_GNUC_MALLOCchar *hashpass (const char *password);28 G_GNUC_MALLOCchar *obfucrypt (char *line, const char *password);29 G_GNUC_MALLOCchar *deobfucrypt (char *line, const char *password);27 char *hashpass (const char *password); 28 char *obfucrypt (char *line, const char *password); 29 char *deobfucrypt (char *line, const char *password); -
help.h
rc511365 r3933853 43 43 } help_t; 44 44 45 G_GNUC_MALLOChelp_t *help_init( help_t **help, const char *helpfile );45 help_t *help_init( help_t **help, const char *helpfile ); 46 46 char *help_get( help_t **help, char *string ); 47 47 -
lib/proxy.c
rc511365 r3933853 211 211 } 212 212 213 if ( strlen(proxyuser) > 0) {213 if (proxyuser && *proxyuser) { 214 214 char *t1, *t2; 215 215 t1 = g_strdup_printf("%s:%s", proxyuser, proxypass); … … 539 539 phb->data = data; 540 540 541 if ((proxytype == PROXY_NONE) || strlen(proxyhost) > 0|| !proxyport || (proxyport == -1))541 if ((proxytype == PROXY_NONE) || !proxyhost || !proxyhost[0] || !proxyport || (proxyport == -1)) 542 542 return proxy_connect_none(host, port, phb); 543 543 else if (proxytype == PROXY_HTTP) -
protocols/nogaim.c
rc511365 r3933853 36 36 #include <ctype.h> 37 37 38 static int remove_chat_buddy_silent( struct groupchat *b, c onst char *handle );38 static int remove_chat_buddy_silent( struct groupchat *b, char *handle ); 39 39 40 40 GSList *connections; … … 556 556 /* Remove him/her from the conversations to prevent PART messages after he/she QUIT already */ 557 557 for( c = ic->conversations; c; c = c->next ) 558 remove_chat_buddy_silent( c, handle );558 remove_chat_buddy_silent( c, (char*) handle ); 559 559 } 560 560 … … 821 821 } 822 822 823 static int remove_chat_buddy_silent( struct groupchat *b, c onst char *handle )823 static int remove_chat_buddy_silent( struct groupchat *b, char *handle ) 824 824 { 825 825 GList *i; -
storage.h
rc511365 r3933853 62 62 63 63 void register_storage_backend(storage_t *); 64 G _GNUC_MALLOC GList *storage_init(const char *primary, char **migrate);64 GList *storage_init(const char *primary, char **migrate); 65 65 66 66 #endif /* __STORAGE_H__ */
Note: See TracChangeset
for help on using the changeset viewer.