diff options
author | phk <phk@FreeBSD.org> | 1994-11-08 13:40:01 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1994-11-08 13:40:01 +0000 |
commit | 73ad652e881e1cc47d67eb72f007c780442e749a (patch) | |
tree | 63288c132aa2fe377747ccfb0bc67a0ce59029c6 | |
parent | 9be726e2865d9568cae5cbf3d7fe0807f72d4721 (diff) | |
download | FreeBSD-src-73ad652e881e1cc47d67eb72f007c780442e749a.zip FreeBSD-src-73ad652e881e1cc47d67eb72f007c780442e749a.tar.gz |
swapon had a bug. Thanks Michael, but couldn't you told me and not Jordan ?
now I have to listen to him all morning teasing me...
-rw-r--r-- | sbin/sysinstall/stage3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/sysinstall/stage3.c b/sbin/sysinstall/stage3.c index cf0f755..f99918c 100644 --- a/sbin/sysinstall/stage3.c +++ b/sbin/sysinstall/stage3.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: stage3.c,v 1.6 1994/10/26 05:41:01 phk Exp $ + * $Id: stage3.c,v 1.7 1994/11/02 06:19:47 jkh Exp $ * */ @@ -46,7 +46,7 @@ stage3() if (*p++ != '/') continue; if (!strcmp(fs->fs_type, "sw")) { - swapon(fs->fs_file); + swapon(fs->fs_spec); continue; } |