aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1998-10-15 10:03:48 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1998-10-15 10:03:48 +0000
commitdbca9b5e344434fa65e0b239f9defc57c941d70d (patch)
treedbd547a4bb77ed71a163a9c508af8b89d1f8435e /usr.sbin
parente4b0567b9bb7cab7869f60e843357c564381191c (diff)
downloadsrc-dbca9b5e344434fa65e0b239f9defc57c941d70d.tar.gz
src-dbca9b5e344434fa65e0b239f9defc57c941d70d.zip
Search for correct property name; the older attrs code bogusly folded case,
so I never noticed this bug. :)
Notes
Notes: svn path=/head/; revision=40378
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/sysinstall/dist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sysinstall/dist.c b/usr.sbin/sysinstall/dist.c
index ad2ae0c61706..5c1ead205695 100644
--- a/usr.sbin/sysinstall/dist.c
+++ b/usr.sbin/sysinstall/dist.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: dist.c,v 1.127 1998/09/29 07:27:33 jkh Exp $
+ * $Id: dist.c,v 1.128 1998/10/14 11:23:48 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -572,7 +572,7 @@ distExtract(char *parent, Distribution *me)
dist, !intr ? "I/O error" : "User interrupt");
}
else {
- tmp = property_find(dist_attr, "pieces");
+ tmp = property_find(dist_attr, "Pieces");
if (tmp)
numchunks = strtol(tmp, 0, 0);
}