diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-08-14 01:31:31 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-08-14 01:31:31 +0000 |
commit | 89f55d36f31ae51e365fc0e4020be0728091bd53 (patch) | |
tree | cf2dd6ad8cc017b6da4df55a6507ea2e6ee624c3 /source4/include | |
parent | 9af22cd8837f25758e3993d5836c2a26f05e5676 (diff) | |
download | samba-89f55d36f31ae51e365fc0e4020be0728091bd53.tar.gz samba-89f55d36f31ae51e365fc0e4020be0728091bd53.tar.bz2 samba-89f55d36f31ae51e365fc0e4020be0728091bd53.zip |
added the ancient SMBcreate operation to the testsuite and client lib
(This used to be commit 3eef35e581b5e1802711b9b5297f61800a7e242e)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/smb_interfaces.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/include/smb_interfaces.h b/source4/include/smb_interfaces.h index 2f5373702c..30e5efe97e 100644 --- a/source4/include/smb_interfaces.h +++ b/source4/include/smb_interfaces.h @@ -1078,7 +1078,8 @@ union smb_fsinfo { enum open_level {RAW_OPEN_OPEN, RAW_OPEN_OPENX, - RAW_OPEN_MKNEW, RAW_OPEN_CTEMP, RAW_OPEN_SPLOPEN, + RAW_OPEN_MKNEW, RAW_OPEN_CREATE, + RAW_OPEN_CTEMP, RAW_OPEN_SPLOPEN, RAW_OPEN_NTCREATEX, RAW_OPEN_T2OPEN}; /* the generic interface is defined to be equal to the NTCREATEX interface */ @@ -1213,7 +1214,7 @@ union smb_open { struct { uint16 fnum; } out; - } mknew; + } mknew, create; /* SMBctemp interface */ struct { |