summaryrefslogtreecommitdiff
path: root/source3/rpcclient/rpcclient.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-03-23 20:41:22 +0000
committerJeremy Allison <jra@samba.org>2001-03-23 20:41:22 +0000
commitcd4fea0098ce5200d764f51bef16980f972925ff (patch)
tree6bab216739ed3abfc068aad5b4dfec4671bbeb67 /source3/rpcclient/rpcclient.c
parent370664344a138ada6779dab23fa31bc4e0794e1a (diff)
downloadsamba-cd4fea0098ce5200d764f51bef16980f972925ff.tar.gz
samba-cd4fea0098ce5200d764f51bef16980f972925ff.tar.bz2
samba-cd4fea0098ce5200d764f51bef16980f972925ff.zip
More unused variables.
Jeremy. (This used to be commit 38b19fad2851a65268b31c7e0240ed36a8407be4)
Diffstat (limited to 'source3/rpcclient/rpcclient.c')
-rw-r--r--source3/rpcclient/rpcclient.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c
index 9934808c77..8cc740f072 100644
--- a/source3/rpcclient/rpcclient.c
+++ b/source3/rpcclient/rpcclient.c
@@ -436,11 +436,9 @@ static void usage(char *pname)
{
extern char *optarg;
extern int optind;
- struct in_addr dest_ip;
extern pstring global_myname;
BOOL got_pass = False;
BOOL interactive = True;
- BOOL have_ip = False;
int opt;
int olddebug;
pstring cmdstr = "",
@@ -468,7 +466,7 @@ static void usage(char *pname)
argv++;
argc--;
- while ((opt = getopt(argc, argv, "A:s:Nd:I:U:W:c:l:")) != EOF) {
+ while ((opt = getopt(argc, argv, "A:s:Nd:U:W:c:l:")) != EOF) {
switch (opt) {
case 'A':
/* only get the username, password, and domain from the file */
@@ -485,11 +483,6 @@ static void usage(char *pname)
DEBUGLEVEL = atoi(optarg);
break;
- case 'I':
- dest_ip = *interpret_addr2(optarg);
- have_ip = True;
- break;
-
case 'l':
slprintf(debugf, sizeof(debugf) - 1, "%s.client", optarg);
interactive = False;
@@ -592,10 +585,9 @@ static void usage(char *pname)
if (cmdstr[0]) {
char *cmd;
char *p = cmdstr;
- uint32 result;
while((cmd=next_command(&p)) != NULL) {
- result = process_cmd(&cli, cmd);
+ process_cmd(&cli, cmd);
}
return 0;
@@ -606,7 +598,6 @@ static void usage(char *pname)
while(1) {
pstring prompt, cmd;
char *line;
- uint32 result;
ZERO_STRUCT(cmd);
@@ -614,9 +605,8 @@ static void usage(char *pname)
line = smb_readline(prompt, NULL, NULL);
- result = process_cmd(&cli, line);
+ process_cmd(&cli, line);
}
return 0;
}
-