# HG changeset patch # User Eric Warmenhoven # Date 956037217 0 # Node ID 350d88f043b664dd8d5167075107187b1dd972e9 # Parent a5c8e7d5edcbed712c861437e2e26649a5402514 [gaim-migrate @ 141] Um... if you tell gaim not to remember your passwords, it shouldn't remember them in ~/.gaimrc.... committer: Tailor Script diff -r a5c8e7d5edcb -r 350d88f043b6 src/gaimrc.c --- 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) {