diff options
author | Michael Adam <obnox@samba.org> | 2008-10-23 11:00:49 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-10-27 13:02:36 +0100 |
commit | 65ca8eb3dd8bd0d857f6be2501abf6898ee10631 (patch) | |
tree | 28a9ee818755aa6a5a1d797b1d4fccd3b389801b /source3 | |
parent | 1c6aa01e1f2f5e7ec1a55aace9392622d91b04c5 (diff) | |
download | samba-65ca8eb3dd8bd0d857f6be2501abf6898ee10631.tar.gz samba-65ca8eb3dd8bd0d857f6be2501abf6898ee10631.tar.bz2 samba-65ca8eb3dd8bd0d857f6be2501abf6898ee10631.zip |
[s3]pdbedit: remove unused variable.
Note: The change of commit r21962 (or fe962d2e48, aka f540c18b2)
that was partly lost in the SVN->git glue commit e5a951325a6
(aka 5c6c8e1fe93f34) is not needed any more since the handler
for option "-s" calls set_dyn_CONFIGFILE().
Michael
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/pdbedit.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/utils/pdbedit.c b/source3/utils/pdbedit.c index 6a7189e636..fe99b6fc9e 100644 --- a/source3/utils/pdbedit.c +++ b/source3/utils/pdbedit.c @@ -809,7 +809,6 @@ int main (int argc, char **argv) static char *pwd_time_format = NULL; static int pw_from_stdin = False; struct pdb_methods *bin, *bout, *bdef; - char *configfile = NULL; TALLOC_CTX *frame = talloc_stackframe(); poptContext pc; struct poptOption long_options[] = { @@ -869,9 +868,6 @@ int main (int argc, char **argv) case 'C': account_policy_value_set = True; break; - case 's': - configfile = optarg; - break; } } |