From b4e3074b81780a594cdb356af07ff0fa84449fc3 Mon Sep 17 00:00:00 2001 From: Oliver Grawert Date: Fri, 25 Jan 2008 17:38:31 +0100 Subject: [PATCH] drop non-existent sanitize command from option parser --- livecd.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/livecd.sh b/livecd.sh index 087d9670..e38e9643 100755 --- a/livecd.sh +++ b/livecd.sh @@ -119,9 +119,9 @@ while getopts :d:e:i:I:m:S:s: name; do case $name in d) STE=$OPTARG;; e) EXCLUDE="$EXCLUDE $OPTARG";; i) LIST="$LIST $OPTARG";; - I) UINUM=$(sanitize int "$OPTARG");; - m) OPTMIRROR=$(sanitize url "$OPTARG");; - S) USZ=$(sanitize int "$OPTARG");; + I) UINUM="$OPTARG";; + m) OPTMIRROR="$OPTARG";; + S) USZ="$OPTARG";; s) SUBARCH="$OPTARG";; \?) echo bad usage >&2; exit 2;; \:) echo missing argument >&2; exit 2;;