Index: sendmail/readcf.c
diff -u sendmail/readcf.c:8.607.2.8 sendmail/readcf.c:8.607.2.9
--- sendmail/readcf.c:8.607.2.8	Wed Mar 12 14:42:52 2003
+++ sendmail/readcf.c	Mon Mar 31 14:14:09 2003
@@ -3380,13 +3380,13 @@
 		else
 			MaxMimeFieldLength = MaxMimeHeaderLength / 2;
 
-		if (MaxMimeHeaderLength < 0)
+		if (MaxMimeHeaderLength <= 0)
 			MaxMimeHeaderLength = 0;
 		else if (MaxMimeHeaderLength < 128)
 			(void) sm_io_fprintf(smioout, SM_TIME_DEFAULT,
 					     "Warning: MaxMimeHeaderLength: header length limit set lower than 128\n");
 
-		if (MaxMimeFieldLength < 0)
+		if (MaxMimeFieldLength <= 0)
 			MaxMimeFieldLength = 0;
 		else if (MaxMimeFieldLength < 40)
 			(void) sm_io_fprintf(smioout, SM_TIME_DEFAULT,

