Fix typos.

* man/login.defs.d/SUB_GID_COUNT.xml: Fix typo.
	* man/login.defs.d/SUB_UID_COUNT.xml: Likewise.
	* man/login.defs.d/SUB_UID_COUNT.xml: Fix copy-paste issue from
	SUB_GID_COUNT.
	* man/newgidmap.1.xml: Fix Typo.
	* src/useradd.c: Fix typos.
	* lib/subordinateio.c: Fix typos.
This commit is contained in:
Nicolas François
2013-08-06 20:32:59 +02:00
parent fcb7222b1a
commit 95d1e146b2
6 changed files with 18 additions and 8 deletions

View File

@ -231,7 +231,7 @@ static unsigned long find_free_range(struct commonio_db *db,
if ((count == 0) || (max <= min))
goto fail;
/* Sort by range than by owner */
/* Sort by range then by owner */
commonio_sort (db, subordinate_range_cmp);
commonio_rewind(db);
@ -275,7 +275,7 @@ static int add_range(struct commonio_db *db,
if (have_range(db, owner, start, count))
return 1;
/* Oterwise append the range */
/* Otherwise append the range */
return commonio_append(db, &range);
}