From 966e88ac3d8e9a00c243ac5c62bb90637e321aca Mon Sep 17 00:00:00 2001 From: short <> Date: Tue, 2 Oct 2001 02:21:13 +0000 Subject: [PATCH] $1 is now basename-ed Fixed typo in "httpd" processing --- bin/mdr_args | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/mdr_args b/bin/mdr_args index 2b64f98..c9e2b8c 100755 --- a/bin/mdr_args +++ b/bin/mdr_args @@ -4,7 +4,7 @@ if [ $# != 1 ];then exit 1 fi -case "$1" in +case "`basename "$1"`" in tac_plus) minus= @@ -19,6 +19,7 @@ dosfsck) ;; httpd) echo "-DSSL -X -f $HOME/http/httpd.conf" + ;; *) ;; esac -- 1.8.3.1