diff options
author | Tim Potter <tpot@samba.org> | 2005-11-10 03:48:56 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:01 -0500 |
commit | 0eeedb97a5b28c20edcf13d37e52b8e8b98567f6 (patch) | |
tree | 91bfe583a974b35795fada1c7b53a7a288bd8d22 /source4/client/client.c | |
parent | 16a9bfd33f52cb398c6d3d3472d9dbe53927370d (diff) | |
download | samba-0eeedb97a5b28c20edcf13d37e52b8e8b98567f6.tar.gz samba-0eeedb97a5b28c20edcf13d37e52b8e8b98567f6.tar.xz samba-0eeedb97a5b28c20edcf13d37e52b8e8b98567f6.zip |
r11626: Fix unhandled enum in case statement warnings by noting appropriately
that some values aren't handled. The remaining warnings I think are
actual bugs or required functionality that is missing (mostly lack of
server side Unix extensions).
(This used to be commit 03c7da27a06736f2a27d76e6a00a24ab54453af9)
Diffstat (limited to 'source4/client/client.c')
-rw-r--r-- | source4/client/client.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/client/client.c b/source4/client/client.c index a8d22e75b7..6cad6a9d39 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -1817,6 +1817,9 @@ static int cmd_fsinfo(const char **cmd_ptr) (unsigned long long) fsinfo.objectid_information.out.unknown[5], (unsigned long long) fsinfo.objectid_information.out.unknown[6] ); break; + case RAW_QFS_GENERIC: + d_printf("\twrong level returned\n"); + break; } done: |