Fix wording: secondary -> subordinate.
* libmisc/find_new_sub_gids.c: Fix wording: secondary -> subordinate. * libmisc/find_new_sub_uids.c: Likewise.
This commit is contained in:
parent
ac53650da5
commit
316bc6b3f4
@ -1,3 +1,9 @@
|
|||||||
|
2013-08-07 Nicolas François <nicolas.francois@centraliens.net>
|
||||||
|
|
||||||
|
* libmisc/find_new_sub_gids.c: Fix wording: secondary ->
|
||||||
|
subordinate.
|
||||||
|
* libmisc/find_new_sub_uids.c: Likewise.
|
||||||
|
|
||||||
2013-08-06 Nicolas François <nicolas.francois@centraliens.net>
|
2013-08-06 Nicolas François <nicolas.francois@centraliens.net>
|
||||||
|
|
||||||
* libmisc/find_new_sub_gids.c: Remove duplicate check (duplicate
|
* libmisc/find_new_sub_gids.c: Remove duplicate check (duplicate
|
||||||
|
@ -77,9 +77,9 @@ int find_new_sub_gids (const char *owner,
|
|||||||
start = sub_gid_find_free_range(min, max, count);
|
start = sub_gid_find_free_range(min, max, count);
|
||||||
if (start == (gid_t)-1) {
|
if (start == (gid_t)-1) {
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
_("%s: Can't get unique secondary GID range\n"),
|
_("%s: Can't get unique subordinate GID range\n"),
|
||||||
Prog);
|
Prog);
|
||||||
SYSLOG ((LOG_WARN, "no more available secondary GIDs on the system"));
|
SYSLOG ((LOG_WARN, "no more available subordinate GIDs on the system"));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
*range_start = start;
|
*range_start = start;
|
||||||
|
@ -77,9 +77,9 @@ int find_new_sub_uids (const char *owner,
|
|||||||
start = sub_uid_find_free_range(min, max, count);
|
start = sub_uid_find_free_range(min, max, count);
|
||||||
if (start == (uid_t)-1) {
|
if (start == (uid_t)-1) {
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
_("%s: Can't get unique secondary UID range\n"),
|
_("%s: Can't get unique subordinate UID range\n"),
|
||||||
Prog);
|
Prog);
|
||||||
SYSLOG ((LOG_WARN, "no more available secondary UIDs on the system"));
|
SYSLOG ((LOG_WARN, "no more available subordinate UIDs on the system"));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
*range_start = start;
|
*range_start = start;
|
||||||
|
Loading…
Reference in New Issue
Block a user