diff options
author | Tim Potter <tpot@samba.org> | 2002-05-07 04:31:56 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-05-07 04:31:56 +0000 |
commit | 535779e9fc3f68903c4a6a0a16f20fe1dd6327c7 (patch) | |
tree | 2e064aeb1ee8e5bfa97b040a866eb55257d5c9bd /source3/rpcclient | |
parent | 202341dbce8f53ed71334cc8eb8a9ab0c1873b61 (diff) | |
download | samba-535779e9fc3f68903c4a6a0a16f20fe1dd6327c7.tar.gz samba-535779e9fc3f68903c4a6a0a16f20fe1dd6327c7.tar.bz2 samba-535779e9fc3f68903c4a6a0a16f20fe1dd6327c7.zip |
Fixed compile warning.
(This used to be commit 671607a3eefc58673bdd4cb8fc8d3a3f65542f03)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/rpcclient.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index 1b3d0a756d..29b99165d3 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -599,7 +599,8 @@ static void usage(void) BOOL interactive = True; int opt; int olddebug; - static char *cmdstr = "", *server; + static char *cmdstr = ""; + const char *server; struct cli_state *cli; fstring password="", username="", |