diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-09-13 13:13:21 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:44 -0500 |
commit | 360f125f255fd7d5a172d012c00b3cfbff5a6989 (patch) | |
tree | e923d87fa67562dca791eecd450ea10243fbc389 /source4/ntvfs/cifs/vfs_cifs.c | |
parent | cff1f3e8a961ffc15c09ef5de1aa965122e6e4f6 (diff) | |
download | samba-360f125f255fd7d5a172d012c00b3cfbff5a6989.tar.gz samba-360f125f255fd7d5a172d012c00b3cfbff5a6989.tar.xz samba-360f125f255fd7d5a172d012c00b3cfbff5a6989.zip |
r2326: remove definition and usage of struct socket_context
metze
(This used to be commit 1854907da8d577db41de9aa14573d5c8c0092f47)
Diffstat (limited to 'source4/ntvfs/cifs/vfs_cifs.c')
-rw-r--r-- | source4/ntvfs/cifs/vfs_cifs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/cifs/vfs_cifs.c b/source4/ntvfs/cifs/vfs_cifs.c index c9073b04cf..ecc2c7ebcb 100644 --- a/source4/ntvfs/cifs/vfs_cifs.c +++ b/source4/ntvfs/cifs/vfs_cifs.c @@ -51,7 +51,7 @@ struct async_info { static void idle_func(struct smbcli_transport *transport, void *p_private) { struct cvfs_private *private = p_private; - if (socket_pending(private->tcon->smb_conn->connection->socket->fde->fd)) { + if (socket_pending(private->tcon->smb_conn->connection->event.fde->fd)) { smbd_process_async(private->tcon->smb_conn); } } |