diff options
author | Jim Meyering <jim@meyering.net> | 1998-08-30 02:33:45 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-08-30 02:33:45 +0000 |
commit | b6f403c60602dea1328c2e6d8f5f8cd1292dc19b (patch) | |
tree | 541dcc5babbd502e9e40748bf8596d6cea05a0a8 | |
parent | fa59cde3fe964d805a1b679fd8065fc7fbf8f9e2 (diff) | |
download | coreutils-b6f403c60602dea1328c2e6d8f5f8cd1292dc19b.tar.xz |
Don't assume ASCII in getopt arg handling.
-rw-r--r-- | src/df.c | 12 | ||||
-rw-r--r-- | src/touch.c | 4 |
2 files changed, 8 insertions, 8 deletions
@@ -115,7 +115,7 @@ static int print_type; static struct option const long_options[] = { {"all", no_argument, NULL, 'a'}, - {"block-size", required_argument, NULL, 131}, + {"block-size", required_argument, NULL, CHAR_MAX + 3}, {"inodes", no_argument, NULL, 'i'}, {"human-readable", no_argument, NULL, 'h'}, {"si", no_argument, NULL, 'H'}, @@ -124,8 +124,8 @@ static struct option const long_options[] = {"megabytes", no_argument, NULL, 'm'}, {"portability", no_argument, NULL, 'P'}, {"print-type", no_argument, NULL, 'T'}, - {"sync", no_argument, NULL, 129}, - {"no-sync", no_argument, NULL, 130}, + {"sync", no_argument, NULL, CHAR_MAX + 1}, + {"no-sync", no_argument, NULL, CHAR_MAX + 2}, {"type", required_argument, NULL, 't'}, {"exclude-type", required_argument, NULL, 'x'}, {"help", no_argument, &show_help, 1}, @@ -654,14 +654,14 @@ main (int argc, char **argv) case 'P': posix_format = 1; break; - case 129: + case CHAR_MAX + 1: require_sync = 1; break; - case 130: + case CHAR_MAX + 2: require_sync = 0; break; - case 131: + case CHAR_MAX + 3: human_block_size (optarg, 1, &output_block_size); break; diff --git a/src/touch.c b/src/touch.c index 2c7b05a7e..56065c0d3 100644 --- a/src/touch.c +++ b/src/touch.c @@ -96,7 +96,7 @@ static int show_version; static struct option const longopts[] = { - {"time", required_argument, 0, 130}, + {"time", required_argument, 0, CHAR_MAX + 1}, {"no-create", no_argument, 0, 'c'}, {"date", required_argument, 0, 'd'}, {"file", required_argument, 0, 'r'}, @@ -294,7 +294,7 @@ main (int argc, char **argv) date_set++; break; - case 130: + case CHAR_MAX + 1: i = argmatch (optarg, time_args); if (i < 0) { |