comparison src/protocols/irc/irc.c @ 6499:17a9cdac508e

[gaim-migrate @ 7014] make IRC passwords secret again committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 19 Aug 2003 03:37:32 +0000
parents b52870734c21
children a4622f1fb5a1
comparison
equal deleted inserted replaced
6498:87024723ef17 6499:17a9cdac508e
123 m = g_list_append(m, pce); 123 m = g_list_append(m, pce);
124 124
125 pce = g_new0(struct proto_chat_entry, 1); 125 pce = g_new0(struct proto_chat_entry, 1);
126 pce->label = _("Password:"); 126 pce->label = _("Password:");
127 pce->identifier = "password"; 127 pce->identifier = "password";
128 pce->secret = TRUE;
128 m = g_list_append(m, pce); 129 m = g_list_append(m, pce);
129 130
130 return m; 131 return m;
131 } 132 }
132 133