diff options
author | Ron Yorston <rmy@pobox.com> | 2021-05-14 08:17:12 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-05-14 08:17:12 +0100 |
commit | a3f5a1b7f4275f713acf22f534f95c0da8392e53 (patch) | |
tree | 49b65422a3e9c33f508da9ccf3ae79d324bd9e96 /applets/applet_tables.c | |
parent | 375cda9a88024135d630ca8990d9aff4ea414e89 (diff) | |
parent | 7de0ab21d939a5a304157f75918d0318a95261a3 (diff) | |
download | busybox-w32-a3f5a1b7f4275f713acf22f534f95c0da8392e53.tar.gz busybox-w32-a3f5a1b7f4275f713acf22f534f95c0da8392e53.tar.bz2 busybox-w32-a3f5a1b7f4275f713acf22f534f95c0da8392e53.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'applets/applet_tables.c')
-rw-r--r-- | applets/applet_tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/applet_tables.c b/applets/applet_tables.c index b1dafccd2..fe26a5109 100644 --- a/applets/applet_tables.c +++ b/applets/applet_tables.c | |||
@@ -56,7 +56,7 @@ static int cmp_name(const void *a, const void *b) | |||
56 | static int str_isalnum_(const char *s) | 56 | static int str_isalnum_(const char *s) |
57 | { | 57 | { |
58 | while (*s) { | 58 | while (*s) { |
59 | if (!isalnum(*s) && *s != '_') | 59 | if (!isalnum((unsigned char)*s) && *s != '_') |
60 | return 0; | 60 | return 0; |
61 | s++; | 61 | s++; |
62 | } | 62 | } |