summary refs log tree commit diff stats
path: root/src/fe-gtk/servlistgui.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2013-05-11 20:42:29 +0200
committerBerke Viktor <bviktor@hexchat.org>2013-05-11 20:42:29 +0200
commit791e0fc11f1132c25ce700ae975d6cee93ab9acc (patch)
treef350c9ca9da4cdaff20a0ab4d3f5f3a010a05274 /src/fe-gtk/servlistgui.c
parent0badd9b874b2bd7ebbeb4209cbbc3fc0c9ce8899 (diff)
Make login type more intuitive and disable unused /NS
Diffstat (limited to 'src/fe-gtk/servlistgui.c')
-rw-r--r--src/fe-gtk/servlistgui.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/fe-gtk/servlistgui.c b/src/fe-gtk/servlistgui.c
index 3c9ecd22..7f2985b3 100644
--- a/src/fe-gtk/servlistgui.c
+++ b/src/fe-gtk/servlistgui.c
@@ -120,7 +120,9 @@ static int login_types_conf[] =
 	7,	/* /pass */
 	1,	/* /msg NickServ */
 	2,	/* /NickServ */
+#if 0
 	3,	/* /NS */
+#endif
 	4,	/* /msg NS */
 	5,	/* /auth */
 };
@@ -128,13 +130,15 @@ static int login_types_conf[] =
 static const char *login_types[]=
 {
 	"Default",
-	"SASL",
-	"Server Password",
-	"Message NickServ",
-	"NickServ",
-	"NS",
-	"Message NS",
-	"AUTH",
+	"SASL (username + password)",
+	"Server Password (/PASS password)",
+	"NickServ (/MSG NickServ + password)",
+	"NickServ (/NickServ + password)",
+#if 0
+	"NickServ (/NS + password)",
+#endif
+	"NickServ (/MSG NS + password)",
+	"AUTH (/AUTH nickname password)",
 	NULL
 };