aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1994-02-17 03:57:00 +0000
committerDavid Greenman <dg@FreeBSD.org>1994-02-17 03:57:00 +0000
commitfe8ab1a5fe930a93022a023f5740235278e2a8ad (patch)
tree0e7814947f2320f199ac6e3ae503e046710893ab /gnu
parentb5d1f471603b213123a8706df3b3a4ebb9f01275 (diff)
Notes
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/ld/ld.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/usr.bin/ld/ld.c b/gnu/usr.bin/ld/ld.c
index 1d63c822050e8..d3ef9f5a45c9f 100644
--- a/gnu/usr.bin/ld/ld.c
+++ b/gnu/usr.bin/ld/ld.c
@@ -32,7 +32,7 @@ static char sccsid[] = "@(#)ld.c 6.10 (Berkeley) 5/22/91";
Set, indirect, and warning symbol features added by Randy Smith. */
/*
- * $Id: ld.c,v 1.19 1994/01/19 15:00:27 davidg Exp $
+ * $Id: ld.c,v 1.20 1994/02/13 20:41:28 jkh Exp $
*/
/* Define how to initialize system-dependent header fields. */
@@ -347,7 +347,6 @@ main(argc, argv)
* and initialize the text size accordingly. This depends on the kind
* of system and on the output format selected.
*/
-
if (magic == ZMAGIC || magic == QMAGIC)
page_align_segments = 1;
@@ -755,10 +754,16 @@ decode_option(swt, arg)
case 'z':
magic = ZMAGIC;
oldmagic = 0;
+#ifdef __FreeBSD__
+ netzmagic = 1;
+#endif
return;
case 'Z':
magic = oldmagic = ZMAGIC;
+#ifdef __FreeBSD__
+ netzmagic = 0;
+#endif
return;
default: