diff options
author | 1997-09-17 00:56:42 +0000 | |
---|---|---|
committer | 1997-09-17 00:56:42 +0000 | |
commit | f405b1fc7041b1688860df441843b873558cf71e (patch) | |
tree | c98ed7395ed585ced5033cfd9144ddb97684792a | |
parent | Possible buf oflow, from Theo. (diff) | |
download | wireguard-openbsd-f405b1fc7041b1688860df441843b873558cf71e.tar.xz wireguard-openbsd-f405b1fc7041b1688860df441843b873558cf71e.zip |
Fix up the non alpha && mips section, back out change to print
offset of lkm in hex, as this number gets passed by apinstall to
mknod. (mknod does not understand hex too well).
-rw-r--r-- | sbin/modload/modload.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/modload/modload.c b/sbin/modload/modload.c index aafeddb2609..d455101deeb 100644 --- a/sbin/modload/modload.c +++ b/sbin/modload/modload.c @@ -1,4 +1,4 @@ -/* $OpenBSD: modload.c,v 1.16 1997/09/11 11:49:51 deraadt Exp $ */ +/* $OpenBSD: modload.c,v 1.17 1997/09/17 00:56:42 weingart Exp $ */ /* $NetBSD: modload.c,v 1.13 1995/05/28 05:21:58 jtc Exp $ */ /* @@ -74,9 +74,9 @@ int dounlink = 0; #define LDTEXTSTART "-Ttext" #define LDSYMPREFIX "" #else -#define LDSYMTABLE "-R" -#define LDTEXTSTART "-Ttext" -#define LDSYMPREFIX "" +#define LDSYMTABLE "-A" +#define LDTEXTSTART "-T" +#define LDSYMPREFIX "_" #define MAGICCHECK #endif @@ -513,7 +513,7 @@ main(argc, argv) err(15, "error fetching module stats for post-install"); sprintf(id, "%d", sbuf.id); sprintf(type, "0x%x", sbuf.type); - sprintf(offset, "%lx", sbuf.offset); + sprintf(offset, "%d", sbuf.offset); /* * XXX * The modload docs say that drivers can install bdevsw & |