diff src/aim.c @ 2531:93b50fa8f410

[gaim-migrate @ 2544] This was kinda annoying. I was trying to sign on to my IRC account from the first screen. Wouldn't let me. It kept bitching about my password being empty. This should fix it. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Thu, 18 Oct 2001 00:44:43 +0000
parents a83b4a5ffcd6
children 5639484fccc9
line wrap: on
line diff
--- a/src/aim.c	Thu Oct 18 00:30:34 2001 +0000
+++ b/src/aim.c	Thu Oct 18 00:44:43 2001 +0000
@@ -141,13 +141,10 @@
 		return;
 	}
 
-	if (!strlen(password)) {
-		do_error_dialog(_("Please enter your password"), _("Signon Error"));
-		return;
-	}
+	/* if there is more than one user of the same name, then fuck 
+	 * them, they just have to use the account editor to sign in 
+	 * the second one */
 
-	/* if there is more than one user of the same name, then fuck them, they just have
-	 * to use the account editor to sign in the second one */
 	u = find_user(username, -1);
 	if (!u)
 		u = new_user(username, DEFAULT_PROTO, OPT_USR_REM_PASS);