# HG changeset patch # User Luke Schierer # Date 1049378642 0 # Node ID 503f61301b810c6d82ce0bdf3c5eb4b16469d9d6 # Parent 6fc8edf857f55908e69bccda3449ff4d34c5c117 [gaim-migrate @ 5312] Daniel Bungert (dbungert) noted and patched the situation where changing your password doesn't save your changed password to .gaimrc, so you can't log in again w/out manually editing the text file. his patch fixes that. committer: Tailor Script diff -r 6fc8edf857f5 -r 503f61301b81 src/dialogs.c --- a/src/dialogs.c Thu Apr 03 13:52:24 2003 +0000 +++ b/src/dialogs.c Thu Apr 03 14:04:02 2003 +0000 @@ -1881,6 +1881,8 @@ } serv_change_passwd(b->gc, orig, new1); + g_snprintf(b->gc->account->password, sizeof(b->gc->account->password), "%s", new1); + save_prefs(); destroy_dialog(NULL, b->window); g_free(b);