dreid 99/10/22 04:26:55
Modified: src/lib/apr/network_io/beos networkio.h Log: Correct a small typo that Roy pointed out. Revision Changes Path 1.5 +1 -1 apache-2.0/src/lib/apr/network_io/beos/networkio.h Index: networkio.h =================================================================== RCS file: /home/cvs/apache-2.0/src/lib/apr/network_io/beos/networkio.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- networkio.h 1999/10/22 09:27:57 1.4 +++ networkio.h 1999/10/22 11:26:54 1.5 @@ -63,7 +63,7 @@ * * It will be included in the next release, but until then... */ #if __POWER_PC__ -#define iasascii(c) (((c) & ~0x7f)==0) +#define isascii(c) (((c) & ~0x7f)==0) #endif #include "apr_general.h"