diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-04-12 17:39:24 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-16 14:35:34 +1000 |
commit | 2bc8999266629c73be22633c6188cc439a0ea2f4 (patch) | |
tree | 2eeb19e7007c64b721ddb2428bdb70c8e1acbd83 | |
parent | 3bb7cbf79834aaf43b07385b39ecead61769a458 (diff) | |
download | samba-2bc8999266629c73be22633c6188cc439a0ea2f4.tar.gz samba-2bc8999266629c73be22633c6188cc439a0ea2f4.tar.bz2 samba-2bc8999266629c73be22633c6188cc439a0ea2f4.zip |
lib/param: swap preferred name for 'lock dir' to match s3
-rw-r--r-- | lib/param/loadparm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index 86a2282638..08d46b2765 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -1065,7 +1065,7 @@ static struct parm_struct parm_table[] = { .flags = FLAG_ADVANCED, }, { - .label = "lock dir", + .label = "lock directory", .type = P_STRING, .p_class = P_GLOBAL, .offset = GLOBAL_VAR(szLockDir), @@ -1074,7 +1074,7 @@ static struct parm_struct parm_table[] = { .flags = FLAG_ADVANCED, }, { - .label = "lock directory", + .label = "lock dir", .type = P_STRING, .p_class = P_GLOBAL, .offset = GLOBAL_VAR(szLockDir), |