[dovecot-cvs] dovecot/src/auth auth-master-connection.c,1.43,1.44
tss at dovecot.org
tss at dovecot.org
Sun Nov 12 19:54:31 UTC 2006
Update of /var/lib/cvs/dovecot/src/auth
In directory talvi:/tmp/cvs-serv25926/src/auth
Modified Files:
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.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- auth-master-connection.c 30 Jul 2006 23:05:30 -0000 1.43
+++ auth-master-connection.c 12 Nov 2006 19:54:29 -0000 1.44
@@ -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