diff --git a/ChangeLog b/ChangeLog index 1eebfcd4..1dfbdb95 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2013-08-07 Nicolas François + + * libmisc/find_new_sub_gids.c: Fix wording: secondary -> + subordinate. + * libmisc/find_new_sub_uids.c: Likewise. + 2013-08-06 Nicolas François * libmisc/find_new_sub_gids.c: Remove duplicate check (duplicate diff --git a/libmisc/find_new_sub_gids.c b/libmisc/find_new_sub_gids.c index 8740b448..f52dda98 100644 --- a/libmisc/find_new_sub_gids.c +++ b/libmisc/find_new_sub_gids.c @@ -77,9 +77,9 @@ int find_new_sub_gids (const char *owner, start = sub_gid_find_free_range(min, max, count); if (start == (gid_t)-1) { fprintf (stderr, - _("%s: Can't get unique secondary GID range\n"), + _("%s: Can't get unique subordinate GID range\n"), 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; } *range_start = start; diff --git a/libmisc/find_new_sub_uids.c b/libmisc/find_new_sub_uids.c index e511ec14..5dfcaf25 100644 --- a/libmisc/find_new_sub_uids.c +++ b/libmisc/find_new_sub_uids.c @@ -77,9 +77,9 @@ int find_new_sub_uids (const char *owner, start = sub_uid_find_free_range(min, max, count); if (start == (uid_t)-1) { fprintf (stderr, - _("%s: Can't get unique secondary UID range\n"), + _("%s: Can't get unique subordinate UID range\n"), 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; } *range_start = start;