diff options
| -rw-r--r-- | protocols/nogaim.c | 1 | ||||
| -rw-r--r-- | user.h | 1 | 
2 files changed, 2 insertions, 0 deletions
| diff --git a/protocols/nogaim.c b/protocols/nogaim.c index f9ee8a55..28f76fff 100644 --- a/protocols/nogaim.c +++ b/protocols/nogaim.c @@ -525,6 +525,7 @@ void add_buddy( struct gaim_connection *gc, char *group, char *handle, char *rea  	u->gc = gc;  	u->handle = g_strdup( handle ); +	if( group ) u->group = g_strdup( group );  	u->send_handler = buddy_send_handler;  	u->last_typing_notice = 0;  } @@ -36,6 +36,7 @@ typedef struct __USER  	char online;  	char *handle; +	char *group;  	struct gaim_connection *gc;   	char *sendbuf; | 
