Mercurial > pidgin.yaz
comparison src/gaimrc.c @ 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 | 51943f1a97a0 |
children | fbabd28795d2 |
comparison
equal
deleted
inserted
replaced
130:a5c8e7d5edcb | 131:350d88f043b6 |
---|---|
281 | 281 |
282 static void gaimrc_write_user(FILE *f, struct aim_user *u) | 282 static void gaimrc_write_user(FILE *f, struct aim_user *u) |
283 { | 283 { |
284 char *c; | 284 char *c; |
285 int nl = 1;; | 285 int nl = 1;; |
286 fprintf(f, "\t\tident { %s } { %s }\n", u->username, u->password); | 286 if (general_options & OPT_GEN_REMEMBER_PASS) |
287 fprintf(f, "\t\tident { %s } { %s }\n", u->username, u->password); | |
288 else | |
289 fprintf(f, "\t\tident { %s } { }\n", u->username); | |
287 fprintf(f, "\t\tuser_info {"); | 290 fprintf(f, "\t\tuser_info {"); |
288 c = u->user_info; | 291 c = u->user_info; |
289 while(*c) { | 292 while(*c) { |
290 /* This is not as silly as it looks. */ | 293 /* This is not as silly as it looks. */ |
291 if (*c == '\n') { | 294 if (*c == '\n') { |