diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-10-20 12:24:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:01:58 -0500 |
commit | 82a56fae9954dcc12f7c531a44cc9344281acb85 (patch) | |
tree | 4f7a3728f6731cba7097a16d4b28f2f7b5ec569d | |
parent | 042a045025f53f89b87d253cd22678a8060c7711 (diff) | |
download | samba-82a56fae9954dcc12f7c531a44cc9344281acb85.tar.gz samba-82a56fae9954dcc12f7c531a44cc9344281acb85.tar.bz2 samba-82a56fae9954dcc12f7c531a44cc9344281acb85.zip |
r3087: fixed a typo
(This used to be commit 3791b97694f052b0b7e170e07c21f7a5739d74dd)
-rw-r--r-- | source4/ntvfs/ntvfs_generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/ntvfs_generic.c b/source4/ntvfs/ntvfs_generic.c index d4c163844f..0be4e5fd8e 100644 --- a/source4/ntvfs/ntvfs_generic.c +++ b/source4/ntvfs/ntvfs_generic.c @@ -913,7 +913,7 @@ NTSTATUS ntvfs_map_close(struct smbsrv_request *req, union smb_close *cl, return NT_STATUS_NO_MEMORY; } - switch (cl2->generic.level) { + switch (cl->generic.level) { case RAW_CLOSE_CLOSE: return NT_STATUS_INVALID_LEVEL; |