diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-05-29 22:00:54 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-05-29 22:00:54 +0000 |
commit | 2153494966453778117eab028b6f44b1574da4a6 (patch) | |
tree | 8a73d008e53a0a2177449a7eb4e43e748b80f080 /source3/utils | |
parent | ee3600361f24d7df7e1a68d5f03a56903d0b42fa (diff) | |
download | samba-2153494966453778117eab028b6f44b1574da4a6.tar.gz samba-2153494966453778117eab028b6f44b1574da4a6.tar.bz2 samba-2153494966453778117eab028b6f44b1574da4a6.zip |
Setting account policy values is done using -C, not -V. Fixes bug #120
(This used to be commit daf443757b62bd3c254a303d638bfd030b4acd2a)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/pdbedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/pdbedit.c b/source3/utils/pdbedit.c index 9a45049bc5..d540bf42de 100644 --- a/source3/utils/pdbedit.c +++ b/source3/utils/pdbedit.c @@ -590,7 +590,7 @@ int main (int argc, char **argv) while((opt = poptGetNextOpt(pc)) != -1) { switch (opt) { - case 'V': + case 'C': account_policy_value_set = True; break; } |