diff options
author | Christian Ambach <ambi@samba.org> | 2012-09-21 14:00:53 -0700 |
---|---|---|
committer | Christian Ambach <ambi@samba.org> | 2012-09-22 02:45:50 +0200 |
commit | 8df92a44fcf96a8950a1ba500dbe8febfe91b3de (patch) | |
tree | dcd018df8f7ce5b46c338308783299951b9f79ac /source3/rpcclient | |
parent | f480b44430520f998fea867aa4c2cf9e93cb8d51 (diff) | |
download | samba-8df92a44fcf96a8950a1ba500dbe8febfe91b3de.tar.gz samba-8df92a44fcf96a8950a1ba500dbe8febfe91b3de.tar.bz2 samba-8df92a44fcf96a8950a1ba500dbe8febfe91b3de.zip |
s3:rpcclient fix a compiler warning
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/rpcclient.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index 7b31e1547e..0dad971c96 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -704,6 +704,8 @@ static NTSTATUS do_cmd(struct cli_state *cli, case PIPE_AUTH_TYPE_SPNEGO_KRB5: oid = GENSEC_OID_KERBEROS5; break; + case PIPE_AUTH_TYPE_SPNEGO_NONE: + break; } ntresult = cli_rpc_pipe_open_spnego( cli, cmd_entry->table, |