summaryrefslogtreecommitdiffstats
path: root/source/utils
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-09-08 18:41:42 +0000
committerJeremy Allison <jra@samba.org>2003-09-08 18:41:42 +0000
commit28631ef23f855ce91740fd144e3dc235a3ae7af6 (patch)
tree7fbe60d292e42dc2ec03c509732dadd2ca9dbff2 /source/utils
parent65a5b32f8e9eb1ca19ed9444c42d722800bac809 (diff)
downloadsamba-28631ef23f855ce91740fd144e3dc235a3ae7af6.tar.gz
samba-28631ef23f855ce91740fd144e3dc235a3ae7af6.tar.xz
samba-28631ef23f855ce91740fd144e3dc235a3ae7af6.zip
Fix for incorrect error message - found by Alex Davis <alex14641@yahoo.com>.
Jeremy.
Diffstat (limited to 'source/utils')
-rw-r--r--source/utils/testparm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/utils/testparm.c b/source/utils/testparm.c
index bb89e4ebf21..0a87b4bc1ea 100644
--- a/source/utils/testparm.c
+++ b/source/utils/testparm.c
@@ -300,12 +300,12 @@ via the %%o substitution. With encrypted passwords this is not possible.\n", lp_
}
if (lp_map_system(s) && !(lp_create_mask(s) & S_IXGRP)) {
printf("Invalid combination of parameters for service %s. \
- Map hidden can only work if create mask includes octal 010 (S_IXGRP).\n",
+ Map system can only work if create mask includes octal 010 (S_IXGRP).\n",
lp_servicename(s) );
}
if (lp_map_system(s) && (lp_force_create_mode(s) & S_IXGRP)) {
printf("Invalid combination of parameters for service %s. \
- Map hidden can only work if force create mode excludes octal 010 (S_IXGRP).\n",
+ Map system can only work if force create mode excludes octal 010 (S_IXGRP).\n",
lp_servicename(s) );
}
}