From: Sean E. <sea...@us...> - 2002-10-08 21:13:00
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv22817/src Modified Files: server.c Log Message: a bugfix Index: server.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/server.c,v retrieving revision 1.242 retrieving revision 1.243 diff -u -d -r1.242 -r1.243 --- server.c 6 Oct 2002 19:09:07 -0000 1.242 +++ server.c 8 Oct 2002 21:12:53 -0000 1.243 @@ -44,7 +44,7 @@ { struct prpl *p = find_prpl(user->protocol); - if (user->gc != NULL) + if (user->gc != NULL || p == NULL) return; #ifdef GAIM_PLUGINS @@ -59,7 +59,7 @@ } #endif - if (p && p->login) { + if (p->login) { if (!strlen(user->password) && !(p->options & OPT_PROTO_NO_PASSWORD)) { do_error_dialog(_("Please enter your password"), NULL, GAIM_ERROR); return; |