Fix naming of split sets to be loaded from floppy. From Christoph Badura.
This commit is contained in:
parent
4fcb12d5f1
commit
0eecf02c79
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: util.c,v 1.22 1997/12/05 14:01:12 jonathan Exp $ */
|
||||
/* $NetBSD: util.c,v 1.23 1997/12/25 17:54:41 fvdl Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 1997 Piermont Information Systems Inc.
|
||||
|
@ -194,7 +194,7 @@ int get_via_floppy (void)
|
|||
strcpy (post, ".aa");
|
||||
snprintf (distname, STRSIZE, "%s%s", list->name, dist_postfix);
|
||||
while (list->getit && strcmp(&post[1],list->fdlast) <= 0) {
|
||||
snprintf (fname, STRSIZE, list->name, rel, post);
|
||||
snprintf (fname, STRSIZE, "%s%s", list->name, post);
|
||||
snprintf (fullname, STRSIZE, "/mnt2/%s", fname);
|
||||
first = 1;
|
||||
while (!mounted || stat(fullname, &sb)) {
|
||||
|
|
Loading…
Reference in New Issue