Author: tpot Date: 2005-09-12 21:37:18 +0000 (Mon, 12 Sep 2005) New Revision: 10184
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=10184 Log: Fix a stack of unhandled enumeration warnings. Modified: branches/SAMBA_4_0/source/librpc/rpc/dcerpc_util.c Changeset: Modified: branches/SAMBA_4_0/source/librpc/rpc/dcerpc_util.c =================================================================== --- branches/SAMBA_4_0/source/librpc/rpc/dcerpc_util.c 2005-09-12 21:27:51 UTC (rev 10183) +++ branches/SAMBA_4_0/source/librpc/rpc/dcerpc_util.c 2005-09-12 21:37:18 UTC (rev 10184) @@ -1143,6 +1143,12 @@ } DEBUG(2,("Mapped to DCERPC endpoint %s\n", binding->endpoint)); } + break; + + /* Fall through to next switch statement */ + + default: + break; } switch (binding->transport) {
