diff options
author | Michael Adam <obnox@samba.org> | 2012-07-02 14:46:32 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-07-03 13:39:41 +0200 |
commit | f2e8409c4e60a1350ceb7615f0222789991cd1f2 (patch) | |
tree | 5f362f13787ee11ed630d16d66115135627faf7a /source3 | |
parent | db0c233624e633b3cc1a6e0e44dccc09aaa121f2 (diff) | |
download | samba-f2e8409c4e60a1350ceb7615f0222789991cd1f2.tar.gz samba-f2e8409c4e60a1350ceb7615f0222789991cd1f2.tar.bz2 samba-f2e8409c4e60a1350ceb7615f0222789991cd1f2.zip |
s3:vfs: use smbXsrv_tcon instead of smbXsrv_tcon0 in connection_struct.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/vfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h index be4399feb8..0976f745db 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -282,7 +282,7 @@ struct share_params { typedef struct connection_struct { struct connection_struct *next, *prev; struct smbd_server_connection *sconn; /* can be NULL */ - struct smbXsrv_tcon0 *tcon; /* can be NULL */ + struct smbXsrv_tcon *tcon; /* can be NULL */ uint32_t cnum; /* an index passed over the wire */ struct share_params *params; bool force_user; |