diff options
author | Günther Deschner <gd@samba.org> | 2011-01-12 13:10:28 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-01-12 14:31:05 +0100 |
commit | 9bad1507050046de553c842e2ca0112437b705c1 (patch) | |
tree | 6c461556e14649b361e905019c1cc14264b83d3a /source3/utils | |
parent | 1cd7f6c0e1c52ad09f3c66d89809bae859285880 (diff) | |
download | samba-9bad1507050046de553c842e2ca0112437b705c1.tar.gz samba-9bad1507050046de553c842e2ca0112437b705c1.tar.bz2 samba-9bad1507050046de553c842e2ca0112437b705c1.zip |
s3-net: add missing breaks in switch statement in get_share_info().
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Wed Jan 12 14:31:05 CET 2011 on sn-devel-104
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_rpc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index 416c6bba5a..30d73df708 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -3090,6 +3090,8 @@ static WERROR get_share_info(struct net_context *c, ctr1->array = info.info1; info_ctr->ctr.ctr1 = ctr1; + + break; } case 2: { @@ -3102,6 +3104,8 @@ static WERROR get_share_info(struct net_context *c, ctr2->array = info.info2; info_ctr->ctr.ctr2 = ctr2; + + break; } case 502: { @@ -3114,6 +3118,8 @@ static WERROR get_share_info(struct net_context *c, ctr502->array = info.info502; info_ctr->ctr.ctr502 = ctr502; + + break; } } /* switch */ done: |