From: Wayne Davison Date: Fri, 28 Jan 2005 02:01:18 +0000 (+0000) Subject: Use SIGNED_CHAR_OK instead of HAVE_UNSIGNED_CHAR. X-Git-Tag: v2.6.4pre1~317 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a6c209a1307b0acbf0a9d18247aec62bc62c4a1;p=thirdparty%2Frsync.git Use SIGNED_CHAR_OK instead of HAVE_UNSIGNED_CHAR. --- diff --git a/rsync.h b/rsync.h index c324a9a0..88a503f6 100644 --- a/rsync.h +++ b/rsync.h @@ -294,7 +294,7 @@ enum msgcode { #define uchar unsigned char #endif -#if HAVE_UNSIGNED_CHAR +#if SIGNED_CHAR_OK #define schar signed char #else #define schar char