From 43bd8723652862f0c3926b30eba9fb584a0f34c4 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Wed, 6 Aug 2008 20:14:54 +0000 Subject: [PATCH] -C option takes a filename, not a directory path. (closes issue #13007) Reported by: klaus3000 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@136190 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- contrib/init.d/rc.redhat.asterisk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/init.d/rc.redhat.asterisk b/contrib/init.d/rc.redhat.asterisk index aeaa8f15e7..d2a630ea40 100755 --- a/contrib/init.d/rc.redhat.asterisk +++ b/contrib/init.d/rc.redhat.asterisk @@ -88,7 +88,7 @@ start() { ASTARGS="$ASTARGS -G $AST_GROUP" fi if [ $AST_CONFIG ]; then - ASTARGS="$ASTARGS -C $AST_CONFIG" + ASTARGS="$ASTARGS -C $AST_CONFIG/asterisk.conf" fi daemon $DAEMON $ASTARGS RETVAL=$?