From: Stefan Metzmacher Date: Mon, 18 Feb 2013 09:18:57 +0000 (+0100) Subject: s3:smbd: s/EVENT_FD/TEVENT_FD X-Git-Tag: tevent-0.9.18~156 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2672c37a8fbc9ff4e5b74e9a5ae55a3e08beed43;p=thirdparty%2Fsamba.git s3:smbd: s/EVENT_FD/TEVENT_FD Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 0d98a2f2f8f..0410f16fdc7 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -2436,11 +2436,11 @@ static void smbd_server_connection_handler(struct tevent_context *ev, struct smbd_server_connection *conn = talloc_get_type(private_data, struct smbd_server_connection); - if (flags & EVENT_FD_WRITE) { + if (flags & TEVENT_FD_WRITE) { smbd_server_connection_write_handler(conn); return; } - if (flags & EVENT_FD_READ) { + if (flags & TEVENT_FD_READ) { smbd_server_connection_read_handler(conn, conn->sock); return; } @@ -2454,11 +2454,11 @@ static void smbd_server_echo_handler(struct tevent_context *ev, struct smbd_server_connection *conn = talloc_get_type(private_data, struct smbd_server_connection); - if (flags & EVENT_FD_WRITE) { + if (flags & TEVENT_FD_WRITE) { smbd_server_connection_write_handler(conn); return; } - if (flags & EVENT_FD_READ) { + if (flags & TEVENT_FD_READ) { smbd_server_connection_read_handler( conn, conn->smb1.echo_handler.trusted_fd); return;