diff options
author | Björn Jacke <bj@sernet.de> | 2009-03-30 13:47:58 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-04-22 00:03:22 +0200 |
commit | 42e3ae655091d48e5a921969849c6173a498c963 (patch) | |
tree | b5fc141f7156a31ecc283c06e1729d89944fcc9e | |
parent | c78a4ac7ced4abdc0bd090f13cde927356097b0e (diff) | |
download | samba-42e3ae655091d48e5a921969849c6173a498c963.tar.gz samba-42e3ae655091d48e5a921969849c6173a498c963.tar.bz2 samba-42e3ae655091d48e5a921969849c6173a498c963.zip |
libcli: fix a "not handled in switch" compile warning
return NULL also for RAW_CLOSE_GENERIC
-rw-r--r-- | source4/libcli/raw/rawfile.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/libcli/raw/rawfile.c b/source4/libcli/raw/rawfile.c index 63de051b33..6fac7b8605 100644 --- a/source4/libcli/raw/rawfile.c +++ b/source4/libcli/raw/rawfile.c @@ -796,6 +796,7 @@ _PUBLIC_ struct smbcli_request *smb_raw_close_send(struct smbcli_tree *tree, uni break; case RAW_CLOSE_SMB2: + case RAW_CLOSE_GENERIC: return NULL; } |