diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-05-20 18:34:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:14 -0500 |
commit | 26047265cce081d0190ac781f3eba60fc12a4b60 (patch) | |
tree | e2397b9b032f7ad218c487bc7518719746d7fbaa | |
parent | 183fb2bd4b51fbf6d5660b84804b6f79bf9db36f (diff) | |
download | samba-26047265cce081d0190ac781f3eba60fc12a4b60.tar.gz samba-26047265cce081d0190ac781f3eba60fc12a4b60.tar.xz samba-26047265cce081d0190ac781f3eba60fc12a4b60.zip |
r15756: handle RAW_OPEN_SMB2
metze
(This used to be commit 8aebd7adc9a0288ebf6b8d84fc376d699054a520)
-rw-r--r-- | source4/libcli/raw/interfaces.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/libcli/raw/interfaces.h b/source4/libcli/raw/interfaces.h index 5fe64f064cc..49ac702e450 100644 --- a/source4/libcli/raw/interfaces.h +++ b/source4/libcli/raw/interfaces.h @@ -1282,6 +1282,9 @@ union smb_open { case RAW_OPEN_OPENX_READX: \ file = &op->openxreadx.out.file; \ break; \ + case RAW_OPEN_SMB2: \ + file = &op->smb2.out.file; \ + break; \ default: \ /* this must be a programmer error */ \ file = NULL; \ |