be8168529b
It appears to have been heavily audited (at least as far as string format paranoia goes, and optimizes: snprintf() -> strlcpy()). PR: 22123 Submitted by: Joao Carlos Mendes Luis <jonny@jonny.eng.br> Obtained from: OpenBSD
12 lines
317 B
Text
12 lines
317 B
Text
# $OpenBSD: patch-pop3-gwh,v 1.1.1.1 2000/01/03 02:22:43 kevlo Exp $
|
|
--- pop3-gw.h.orig Thu Jun 19 19:06:28 1997
|
|
+++ pop3-gw.h Tue Dec 28 12:15:22 1999
|
|
@@ -96,7 +96,7 @@
|
|
#define BAD -1
|
|
#define FALSE 0
|
|
#define TRUE 1
|
|
-#ifndef __FreeBSD__
|
|
+#if !defined( BSD4_4 )
|
|
#define MAX(A, B) ((A) > (B) ? (A) : (B))
|
|
#endif
|
|
|