changeset 131:350d88f043b6

[gaim-migrate @ 141] Um... if you tell gaim not to remember your passwords, it shouldn't remember them in ~/.gaimrc.... committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 18 Apr 2000 05:53:37 +0000
parents a5c8e7d5edcb
children f12425e6660d
files src/gaimrc.c
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gaimrc.c	Tue Apr 18 00:00:20 2000 +0000
+++ b/src/gaimrc.c	Tue Apr 18 05:53:37 2000 +0000
@@ -283,7 +283,10 @@
 {
         char *c;
         int nl = 1;;
-        fprintf(f, "\t\tident { %s } { %s }\n", u->username, u->password);
+	if (general_options & OPT_GEN_REMEMBER_PASS)
+	        fprintf(f, "\t\tident { %s } { %s }\n", u->username, u->password);
+	else
+		fprintf(f, "\t\tident { %s } {  }\n", u->username);
         fprintf(f, "\t\tuser_info {");
         c = u->user_info;
         while(*c) {