[dovecot-cvs] dovecot/src/plugins/expire auth-client.c,1.1,1.2
tss at dovecot.org
tss at dovecot.org
Fri Dec 15 18:38:27 UTC 2006
- Previous message: [dovecot-cvs] dovecot/src/login-common login-proxy.c, 1.13, 1.14 ssl-proxy-gnutls.c, 1.13, 1.14 ssl-proxy-openssl.c, 1.51, 1.52
- Next message: [dovecot-cvs] dovecot/src/master auth-process.c, 1.97, 1.98 auth-process.h, 1.9, 1.10 dict-process.c, 1.8, 1.9 log.c, 1.11, 1.12 login-process.c, 1.88, 1.89 master-settings.c, 1.145, 1.146
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/plugins/expire
In directory talvi:/tmp/cvs-serv3614/plugins/expire
Modified Files:
auth-client.c
Log Message:
Replaced void *context from a lot of callbacks with the actual context
type. Also added/fixed some context type checks.
Index: auth-client.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/plugins/expire/auth-client.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- auth-client.c 30 Jul 2006 23:12:54 -0000 1.1
+++ auth-client.c 15 Dec 2006 18:38:25 -0000 1.2
@@ -30,7 +30,7 @@
unsigned int handshaked:1;
};
-static void auth_input(void *context);
+static void auth_input(struct auth_connection *conn);
static int auth_connection_connect(struct auth_connection *conn)
{
@@ -149,9 +149,8 @@
conn->return_value = 1;
}
-static void auth_input(void *context)
+static void auth_input(struct auth_connection *conn)
{
- struct auth_connection *conn = context;
const char *line;
switch (i_stream_read(conn->input)) {
- Previous message: [dovecot-cvs] dovecot/src/login-common login-proxy.c, 1.13, 1.14 ssl-proxy-gnutls.c, 1.13, 1.14 ssl-proxy-openssl.c, 1.51, 1.52
- Next message: [dovecot-cvs] dovecot/src/master auth-process.c, 1.97, 1.98 auth-process.h, 1.9, 1.10 dict-process.c, 1.8, 1.9 log.c, 1.11, 1.12 login-process.c, 1.88, 1.89 master-settings.c, 1.145, 1.146
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list