From 395b253f5f0ff53a3fa88f0a49ed2a97bf1684f5 Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Thu, 24 Mar 2011 12:35:59 +0000 Subject: [PATCH] Really fix the confusion, sorry for noise Submitted by: avg Approved by: cognet --- usr.sbin/makefs/cd9660/cd9660_strings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/makefs/cd9660/cd9660_strings.c b/usr.sbin/makefs/cd9660/cd9660_strings.c index 22483def484..6280a5cfcdf 100644 --- a/usr.sbin/makefs/cd9660/cd9660_strings.c +++ b/usr.sbin/makefs/cd9660/cd9660_strings.c @@ -55,7 +55,7 @@ cd9660_uppercase_characters(char *str, int len) } static inline int -cd9660_is_a_char(char c) +cd9660_is_d_char(char c) { return (isupper((unsigned char)c) || c == '_' @@ -63,7 +63,7 @@ cd9660_is_a_char(char c) } static inline int -cd9660_is_d_char(char c) +cd9660_is_a_char(char c) { return (isupper((unsigned char)c) || c == '_'