# HG changeset patch # User Eric Warmenhoven # Date 991261179 0 # Node ID a84a41ecf380a5a3dbd3bff74f00ef09f4c2577a # Parent 5bed3bc833b52ca258829e68438917c663dbd271 [gaim-migrate @ 1931] my cat is being such a little bitch committer: Tailor Script diff -r 5bed3bc833b5 -r a84a41ecf380 src/gaimrc.c --- a/src/gaimrc.c Wed May 30 18:26:52 2001 +0000 +++ b/src/gaimrc.c Wed May 30 22:19:39 2001 +0000 @@ -792,7 +792,7 @@ } else if (!strcmp(p->option, "port")) { proxyport = atoi(p->value[0]); } else if (!strcmp(p->option, "type")) { - proxyport = atoi(p->value[0]); + proxytype = atoi(p->value[0]); } else if (!strcmp(p->option, "user")) { g_snprintf(proxyuser, sizeof(proxyuser), "%s", p->value[0]); } else if (!strcmp(p->option, "pass")) { @@ -808,7 +808,7 @@ fprintf(f, "\tport { %d }\n", proxyport); fprintf(f, "\ttype { %d }\n", proxytype); fprintf(f, "\tuser { %s }\n", proxyuser); - fprintf(f, "\tport { %s }\n", proxypass); + fprintf(f, "\tpass { %s }\n", proxypass); fprintf(f, "}\n"); }