[dovecot-cvs] dovecot/src/auth auth-master-connection.c, 1.42.2.1, 1.42.2.2
tss at dovecot.org
tss at dovecot.org
Sun Nov 12 19:54:27 UTC 2006
Update of /var/lib/cvs/dovecot/src/auth
In directory talvi:/tmp/cvs-serv25930/src/auth
Modified Files:
Tag: branch_1_0
auth-master-connection.c
Log Message:
Removed "DIE" command from auth protocol. It wasn't implemented, and I'm not
sure if it's such a good idea anyway.
Index: auth-master-connection.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/auth-master-connection.c,v
retrieving revision 1.42.2.1
retrieving revision 1.42.2.2
diff -u -d -r1.42.2.1 -r1.42.2.2
--- auth-master-connection.c 30 Jul 2006 23:05:28 -0000 1.42.2.1
+++ auth-master-connection.c 12 Nov 2006 19:54:25 -0000 1.42.2.2
@@ -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;
More information about the dovecot-cvs
mailing list