$OpenBSD: patch-src_common_c,v 1.1 2011/05/04 15:48:10 ajacoutot Exp $ MIN is already defined in sys/param.h. --- src/common.c.orig Wed May 4 17:34:54 2011 +++ src/common.c Wed May 4 17:35:27 2011 @@ -41,6 +41,9 @@ #include #define SU(x) (x!=NULL?x:"Unknown") +#ifdef MIN +#undef MIN +#endif #define MIN(x,y) ((x)<(y))?(x):(y) int print_cert;