diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1995-08-19 22:08:38 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1995-08-19 22:08:38 +0000 |
| commit | 2bcf7e034b2266cebf2d31c24bc4bc07ad10097e (patch) | |
| tree | cedfc813def7256d9d5dab31f4750b6d05fc9694 /gnu/libexec | |
| parent | 6ec4b3339bbd81ee311eb50fe25a13676e2a02a7 (diff) | |
Notes
Diffstat (limited to 'gnu/libexec')
| -rw-r--r-- | gnu/libexec/uucp/common_sources/uuconf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/libexec/uucp/common_sources/uuconf.h b/gnu/libexec/uucp/common_sources/uuconf.h index 48cf9cd44139..a19e01c9ba3c 100644 --- a/gnu/libexec/uucp/common_sources/uuconf.h +++ b/gnu/libexec/uucp/common_sources/uuconf.h @@ -563,7 +563,7 @@ struct uuconf_dialer #define UUCONF_GRADE_LOW ('z') /* Whether a character is a legal grade (requires <ctype.h>). */ -#define UUCONF_GRADE_LEGAL(b) (isalnum ((unsigned) (b))) +#define UUCONF_GRADE_LEGAL(b) (isascii (BUCHAR (b)) && isalnum (BUCHAR (b))) /* Return < 0 if the first grade should be done before the second grade, == 0 if they are the same, or > 0 if the first grade should |
