mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
Fix for incorrect error message - found by Alex Davis <alex14641@yahoo.com>.
Jeremy.
This commit is contained in:
parent
65a5b32f8e
commit
28631ef23f
@ -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) );
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user