Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/sbin/modload pullup 1.23->1.24 (ross)



details:   https://anonhg.NetBSD.org/src/rev/98841eaabf59
branches:  netbsd-1-4
changeset: 468599:98841eaabf59
user:      perry <perry%NetBSD.org@localhost>
date:      Fri Apr 30 19:02:44 1999 +0000

description:
pullup 1.23->1.24 (ross)

diffstat:

 sbin/modload/modload.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 25b9884ecd9d -r 98841eaabf59 sbin/modload/modload.c
--- a/sbin/modload/modload.c    Fri Apr 30 19:02:25 1999 +0000
+++ b/sbin/modload/modload.c    Fri Apr 30 19:02:44 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: modload.c,v 1.22.2.1 1999/04/23 21:31:15 perry Exp $   */
+/*     $NetBSD: modload.c,v 1.22.2.2 1999/04/30 19:02:44 perry Exp $   */
 
 /*
  * Copyright (c) 1993 Terrence R. Lambert.
@@ -34,7 +34,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: modload.c,v 1.22.2.1 1999/04/23 21:31:15 perry Exp $");
+__RCSID("$NetBSD: modload.c,v 1.22.2.2 1999/04/30 19:02:44 perry Exp $");
 #endif /* not lint */
 
 #include <sys/param.h>
@@ -87,7 +87,7 @@
 
 int debug = 0;
 int verbose = 0;
-int symtab = 1;
+int symtab = 0;
 
 int
 linkcmd(kernel, entry, outfile, address, object)
@@ -233,7 +233,7 @@
                        out = optarg;
                        break;  /* output file */
                case 's':
-                       symtab = 0;
+                       symtab = 1;
                        break;
                case '?':
                        usage();



Home | Main Index | Thread Index | Old Index