diff options
author | Günther Deschner <gd@samba.org> | 2009-10-16 01:59:08 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-10-16 02:04:03 +0200 |
commit | 8b247f35389a899c805d018adb92f372e562a378 (patch) | |
tree | 6a33b08cfd68bd92fe769551f91df9b78d999744 /source3 | |
parent | 5cc895983d9d9e9a0acfaa6a3dfa97f14d9d94c6 (diff) | |
download | samba-8b247f35389a899c805d018adb92f372e562a378.tar.gz samba-8b247f35389a899c805d018adb92f372e562a378.tar.bz2 samba-8b247f35389a899c805d018adb92f372e562a378.zip |
s3-net: fix build warning (missing default in switch).
Guenther
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/net_rpc_join.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/utils/net_rpc_join.c b/source3/utils/net_rpc_join.c index d3a63d373d..fd81205a95 100644 --- a/source3/utils/net_rpc_join.c +++ b/source3/utils/net_rpc_join.c @@ -186,6 +186,10 @@ int net_rpc_join_newstyle(struct net_context *c, int argc, const char **argv) acb_info = ACB_DOMTRUST; break; #endif + default: + DEBUG(0,("secure channel type %d not yet supported\n", + sec_channel_type)); + break; } /* Make authenticated connection to remote machine */ |