diff src/auth/auth-master-connection.c @ 4800:f24a1e1c8310 HEAD

Removed "DIE" command from auth protocol. It wasn't implemented, and I'm not sure if it's such a good idea anyway.
author Timo Sirainen <tss@iki.fi>
date Sun, 12 Nov 2006 21:54:26 +0200
parents 9202ffe3d5c5
children 4ec6a4def05b
line wrap: on
line diff
--- a/src/auth/auth-master-connection.c	Sun Nov 12 21:50:50 2006 +0200
+++ b/src/auth/auth-master-connection.c	Sun Nov 12 21:54:26 2006 +0200
@@ -141,12 +141,6 @@
 	return TRUE;
 }
 
-static bool
-master_input_die(struct auth_master_connection *conn)
-{
-	return TRUE;
-}
-
 static void master_input(void *context)
 {
 	struct auth_master_connection *conn = context;
@@ -194,8 +188,6 @@
 			ret = master_input_request(conn, line + 8);
 		else if (strncmp(line, "USER\t", 5) == 0)
 			ret = master_input_user(conn, line + 5);
-		else if (strcmp(line, "DIE") == 0)
-			ret = master_input_die(conn);
 		else {
 			/* ignore unknown command */
 			ret = TRUE;