aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mkuzip
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2011-05-13 09:55:48 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2011-05-13 09:55:48 +0000
commit22a2d42fa386b5c9ca6f0c56b04eba93f11f0b6a (patch)
tree4130b34836e051e9005b7e45e954847fed2e7db5 /usr.bin/mkuzip
parent15b68c63bb0acb05ad27aeeedb167cfad820e0cf (diff)
downloadsrc-22a2d42fa386b5c9ca6f0c56b04eba93f11f0b6a.tar.gz
src-22a2d42fa386b5c9ca6f0c56b04eba93f11f0b6a.zip
Fixed an embedded shell script.
Reviewed by: sobomax
Notes
Notes: svn path=/head/; revision=221832
Diffstat (limited to 'usr.bin/mkuzip')
-rw-r--r--usr.bin/mkuzip/mkuzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mkuzip/mkuzip.c b/usr.bin/mkuzip/mkuzip.c
index 02ebefa8094f..08c8ed0beab5 100644
--- a/usr.bin/mkuzip/mkuzip.c
+++ b/usr.bin/mkuzip/mkuzip.c
@@ -31,7 +31,7 @@
#define CLOOP_MAGIC_LEN 128
static char CLOOP_MAGIC_START[] = "#!/bin/sh\n#V2.0 Format\n"
- "m=geom_uzip\n(kldstat -m $m 2>&-||kldload $m)>&-&&"
+ "(kldstat -qm g_uzip||kldload geom_uzip)>&-&&"
"mount_cd9660 /dev/`mdconfig -af $0`.uzip $1\nexit $?\n";
static char *readblock(int, char *, u_int32_t);