diff options
author | Jeremy Allison <jra@samba.org> | 2003-09-08 18:41:42 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-09-08 18:41:42 +0000 |
commit | 206d0f4156b1b8b2531a62065fafc17483cc4263 (patch) | |
tree | afc040fd82b3609c52bffb56a74637d6bfe7f8af /source3 | |
parent | 9e9a4f6cd98218bea58fea13de20a5019f8ce92a (diff) | |
download | samba-206d0f4156b1b8b2531a62065fafc17483cc4263.tar.gz samba-206d0f4156b1b8b2531a62065fafc17483cc4263.tar.bz2 samba-206d0f4156b1b8b2531a62065fafc17483cc4263.zip |
Fix for incorrect error message - found by Alex Davis <alex14641@yahoo.com>.
Jeremy.
(This used to be commit 28631ef23f855ce91740fd144e3dc235a3ae7af6)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/testparm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c index bb89e4ebf2..0a87b4bc1e 100644 --- a/source3/utils/testparm.c +++ b/source3/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) ); } } |