diff options
| author | Antoine Brodin <antoine@FreeBSD.org> | 2009-12-12 12:36:41 +0000 |
|---|---|---|
| committer | Antoine Brodin <antoine@FreeBSD.org> | 2009-12-12 12:36:41 +0000 |
| commit | 59cdac432feea410684bc4ee148689541e98056d (patch) | |
| tree | 20dea7b4715ce845317bff803dd8d8d80d4d0460 /sys/boot | |
| parent | a329f4db8a11c1c88af99351713a48f60ab72339 (diff) | |
Notes
Diffstat (limited to 'sys/boot')
| -rw-r--r-- | sys/boot/uboot/lib/glue.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/boot/uboot/lib/glue.c b/sys/boot/uboot/lib/glue.c index 3945b05750e1..5a9591c90f0c 100644 --- a/sys/boot/uboot/lib/glue.c +++ b/sys/boot/uboot/lib/glue.c @@ -467,7 +467,7 @@ ub_stor_type(int type) if (type & DT_STOR_USB) return ("USB"); - if (type & DT_STOR_MMC); + if (type & DT_STOR_MMC) return ("MMC"); return ("Unknown"); @@ -581,11 +581,6 @@ ub_env_enum(const char *last) if (!env) /* no more env. variables to enumerate */ return (NULL); -#if 0 - if (last && strncmp(env, last, strlen(last)) == 0); - /* error, trying to enumerate non existing env. variable */ - return NULL; -#endif /* next enumerated env var */ memset(env_name, 0, 256); |
