diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-05-16 15:03:58 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-05-16 15:03:58 +1000 |
commit | c7d7577fb978dfa822b4aab238440816188099c6 (patch) | |
tree | 7259e48bb31e0cbc79500dcdb04f75a74c11fc81 /source4/libcli/smb2/smb2.h | |
parent | 9bfafcfc213477a4f117ab07ce8f37bc18e74293 (diff) | |
download | samba-c7d7577fb978dfa822b4aab238440816188099c6.tar.gz samba-c7d7577fb978dfa822b4aab238440816188099c6.tar.xz samba-c7d7577fb978dfa822b4aab238440816188099c6.zip |
private -> private_data for struct smb2_request
(This used to be commit 67290e0ad69df2f2fe651249c6550b8e32dd641b)
Diffstat (limited to 'source4/libcli/smb2/smb2.h')
-rw-r--r-- | source4/libcli/smb2/smb2.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/libcli/smb2/smb2.h b/source4/libcli/smb2/smb2.h index ae66a6e0d3b..964dcf320c4 100644 --- a/source4/libcli/smb2/smb2.h +++ b/source4/libcli/smb2/smb2.h @@ -19,6 +19,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef __LIBCLI_SMB2_SMB2_H__ +#define __LIBCLI_SMB2_SMB2_H__ + #include "libcli/raw/request.h" struct smb2_handle; @@ -165,7 +168,7 @@ struct smb2_request { */ struct { void (*fn)(struct smb2_request *); - void *private; + void *private_data; } async; }; @@ -282,3 +285,5 @@ struct smb2_request { return NT_STATUS_INVALID_PARAMETER; \ } \ } while (0) + +#endif |