$OpenBSD: patch-main_c,v 1.1 2004/01/25 05:49:35 jolan Exp $
--- main.c.orig	2004-01-23 06:13:29.000000000 -0600
+++ main.c	2004-01-23 17:07:16.000000000 -0600
@@ -53,7 +53,7 @@ struct color color;
 extern struct feed *first_bak;		/* For use with the signal handler. */
 
 char *browser;						/* Browser command. lynx is standard. */
-int versioncheck = 1;				/* Autoupdate check. 1=yes, 0=no. */
+int versioncheck = 0;				/* Autoupdate check. 1=yes, 0=no. */
 char *proxyname;					/* Hostname of proxyserver. */
 char *useragent;					/* Snownews User-Agent string. */
 unsigned short proxyport = 0;		/* Port on proxyserver to use. */
@@ -861,11 +861,11 @@ int main (int argc, char *argv[]) {
 			strcmp(argv[1], "-u") == 0) {
 			autoupdate = 1;
 			if (argv[2] != NULL) {
-				if (strcmp(argv[2], "--disable-versioncheck") == 0)
-					versioncheck = 0;
+				if (strcmp(argv[2], "--enable-versioncheck") == 0)
+					versioncheck = 1;
 			}
-		} else if (strcmp(argv[1], "--disable-versioncheck") == 0) {
-			versioncheck = 0;
+		} else if (strcmp(argv[1], "--enable-versioncheck") == 0) {
+			versioncheck = 1;
 			if (argv[2] != NULL) {
 				if (strcmp(argv[2], "--update") == 0 ||
 					strcmp(argv[2], "-u") == 0) {
@@ -878,7 +878,7 @@ int main (int argc, char *argv[]) {
 			printf (_("\t--update|-u\tAutomatically update every feed.\n"));
 			printf (_("\t--help|-h\tPrint this help message.\n"));
 			printf (_("\t--version|-V\tPrint version number and exit.\n"));
-			printf (_("\t--disable-versioncheck\n"));
+			printf (_("\t--enable-versioncheck\n"));
 			return 0;
 		}
 	}
