summaryrefslogtreecommitdiff
path: root/source3/smbd/process.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-02-18 10:18:57 +0100
committerMichael Adam <obnox@samba.org>2013-02-19 23:47:56 +0100
commit2672c37a8fbc9ff4e5b74e9a5ae55a3e08beed43 (patch)
treed10964a617b0096c044a56d53e8d700874f473ab /source3/smbd/process.c
parentae1cb5ca04eb46d1112868bc80b459eb2a168920 (diff)
downloadsamba-2672c37a8fbc9ff4e5b74e9a5ae55a3e08beed43.tar.gz
samba-2672c37a8fbc9ff4e5b74e9a5ae55a3e08beed43.tar.bz2
samba-2672c37a8fbc9ff4e5b74e9a5ae55a3e08beed43.zip
s3:smbd: s/EVENT_FD/TEVENT_FD
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/smbd/process.c')
-rw-r--r--source3/smbd/process.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c
index 0d98a2f2f8..0410f16fdc 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;