diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-20 23:46:05 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-20 23:46:05 +0000 |
commit | 89dd1a00b60baf11e4f864d02944e848a790331f (patch) | |
tree | 9c66b639e70c924e900b3f57ebc400fceb3496de | |
parent | 9eebd31e2c0dfb35e32c5524c21f544f89810866 (diff) | |
download | samba-89dd1a00b60baf11e4f864d02944e848a790331f.tar.gz samba-89dd1a00b60baf11e4f864d02944e848a790331f.tar.bz2 samba-89dd1a00b60baf11e4f864d02944e848a790331f.zip |
lp_setup_logfile() doesn't exist any more
(This used to be commit aa52ae7354ae5ab803da4686f344cfc4ca134c46)
-rw-r--r-- | source3/rpcclient/rpcclient.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index dd490f9066..f57b4f2e48 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -570,7 +570,7 @@ static void usage(void) DEBUGLEVEL = 1; - while ((opt = getopt(argc, argv, "A:s:Nd:U:W:c:l:h")) != EOF) { + while ((opt = getopt(argc, argv, "A:s:Nd:U:W:c:h")) != EOF) { switch (opt) { case 'A': /* only get the username, password, and domain from the file */ @@ -587,12 +587,6 @@ static void usage(void) DEBUGLEVEL = atoi(optarg); break; - case 'l': - slprintf(logfile, sizeof(logfile) - 1, "%s.client", optarg); - lp_set_logfile(logfile); - interactive = False; - break; - case 'N': got_pass = True; break; |