diff options
author | Tim Potter <tpot@samba.org> | 2005-09-12 21:37:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:06 -0500 |
commit | 74eea860bae3733b39c4e6767abf350d33a406c8 (patch) | |
tree | e16b8b876d8ce91407171345cacc0d5d60075b00 /source4/librpc | |
parent | e841621c0bbd73580a20ce1bc350f01393281852 (diff) | |
download | samba-74eea860bae3733b39c4e6767abf350d33a406c8.tar.gz samba-74eea860bae3733b39c4e6767abf350d33a406c8.tar.xz samba-74eea860bae3733b39c4e6767abf350d33a406c8.zip |
r10184: Fix a stack of unhandled enumeration warnings.
(This used to be commit aeb42a446b3c28c5cf6800606b3f9b70c49cb94b)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/rpc/dcerpc_util.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c index 40f2fda3a4..73a677cb62 100644 --- a/source4/librpc/rpc/dcerpc_util.c +++ b/source4/librpc/rpc/dcerpc_util.c @@ -1143,6 +1143,12 @@ NTSTATUS dcerpc_pipe_connect_b(TALLOC_CTX *parent_ctx, } DEBUG(2,("Mapped to DCERPC endpoint %s\n", binding->endpoint)); } + break; + + /* Fall through to next switch statement */ + + default: + break; } switch (binding->transport) { |