[dovecot-cvs] dovecot/src/lib compat.h,1.7,1.8

cras at procontrol.fi cras at procontrol.fi
Mon Nov 4 07:20:44 EET 2002


Update of /home/cvs/dovecot/src/lib
In directory danu:/tmp/cvs-serv28182

Modified Files:
	compat.h 
Log Message:
EOVERFLOW doesn't exist everywhere, fallback it to EINVAL.



Index: compat.h
===================================================================
RCS file: /home/cvs/dovecot/src/lib/compat.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- compat.h	24 Oct 2002 00:34:20 -0000	1.7
+++ compat.h	4 Nov 2002 05:20:42 -0000	1.8
@@ -97,4 +97,8 @@
 #define i_isupper(x) isupper((int) (unsigned char) (x))
 #define i_isxdigit(x) isxdigit((int) (unsigned char) (x))
 
+#ifndef EOVERFLOW
+#  define EOVERFLOW EINVAL
+#endif
+
 #endif




More information about the dovecot-cvs mailing list