Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen-Seo committed Jan 9, 2025
1 parent 31cd517 commit 45c6947
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ API calls.
--extract-prefer-uid : Prefer UID over Username when extracting
Note that by default Username is preferred over UID
--extract-prefer-gid : Prefer GID over Group when extracting
Note that by default Group is preferred over UID
Note that by default Group is preferred over GID
--map-user <UID/Uname>:<UID/Uname> : Maps a UID/Username to UID/Username
--map-group <GID/Gname>:<GID/Gname> : Maps a GID/Group to GID/Group
--force-file-permissions <3-octal-values> : Force set permissions for files on archive creation/extraction
Expand Down
2 changes: 1 addition & 1 deletion src/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ void simple_archiver_print_usage(void) {
fprintf(stderr,
"--extract-prefer-gid : Prefer GID over Group when extracting\n");
fprintf(stderr,
" Note that by default Group is preferred over UID\n");
" Note that by default Group is preferred over GID\n");
fprintf(stderr,
"--map-user <UID/Uname>:<UID/Uname> : Maps a UID/Username to "
"UID/Username\n");
Expand Down

0 comments on commit 45c6947

Please sign in to comment.