The branch, master has been updated via b00d223... s3: Fix Coverity ID 629: DEADCODE from 2ea2d2a... s3: Fix bug 5198 -- parse chfn(1)-change gecos field
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit b00d223f87a35498e58ce87dafda7d01582a487f Author: Volker Lendecke <v...@samba.org> Date: Sat Feb 13 17:42:24 2010 +0100 s3: Fix Coverity ID 629: DEADCODE We have already returned if (argc < 1) above ----------------------------------------------------------------------- Summary of changes: source3/utils/net_group.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) Changeset truncated at 500 lines: diff --git a/source3/utils/net_group.c b/source3/utils/net_group.c index 1ead786..7114f1f 100644 --- a/source3/utils/net_group.c +++ b/source3/utils/net_group.c @@ -63,9 +63,6 @@ int net_group(struct net_context *c, int argc, const char **argv) if (net_ads_check(c) == 0) return net_ads_group(c, argc, argv); - if (argc == 0 && net_rpc_check(c, NET_FLAGS_PDC)) - return net_rpc_group(c,argc, argv); - return net_rap_group(c, argc, argv); } -- Samba Shared Repository