diff options
author | jkh <jkh@FreeBSD.org> | 1995-05-29 11:01:42 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-05-29 11:01:42 +0000 |
commit | 4bc5a2dda3322237aff9d99c18e2080f78559ba4 (patch) | |
tree | f98b313f289088a0f9384387c68ec7516031cc7e /release/sysinstall/floppy.c | |
parent | 56df30b7c63bbeceb73f75bc2eb45c0e1c271e5e (diff) | |
download | FreeBSD-src-4bc5a2dda3322237aff9d99c18e2080f78559ba4.zip FreeBSD-src-4bc5a2dda3322237aff9d99c18e2080f78559ba4.tar.gz |
Sync up my work for the night. This should implement ALL possible
installation methods and provide a fairly robust set of menu options.
This should also fix a few more bugs on Poul-Henning's latest gripe
list.
Diffstat (limited to 'release/sysinstall/floppy.c')
-rw-r--r-- | release/sysinstall/floppy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/release/sysinstall/floppy.c b/release/sysinstall/floppy.c index 229b630..865a635 100644 --- a/release/sysinstall/floppy.c +++ b/release/sysinstall/floppy.c @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated to essentially a complete rewrite. * - * $Id: floppy.c,v 1.3 1995/05/28 03:04:56 jkh Exp $ + * $Id: floppy.c,v 1.4 1995/05/29 00:50:01 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -142,7 +142,6 @@ mediaGetFloppy(char *file) char buf[PATH_MAX]; snprintf(buf, PATH_MAX, "/mnt/%s", file); - return open(buf, O_RDONLY); } |