apache のsourceに付属している起動scriptが間違ってる件

build/rpm/httpd.init。statusのとこの${pidfile} の変数が間違ってる

$ diff -u httpd.org httpd
--- httpd.org   2010-12-09 18:18:51.000000000 +0900
+++ httpd       2010-12-09 18:19:01.000000000 +0900
@@ -116,7 +116,7 @@
        if ! test -f ${pidfile}; then
            echo $prog is stopped
            RETVAL=3
        else  
-            status -p {$pidfile} $httpd
+            status -p ${pidfile} $httpd
            RETVAL=$?
        fi
        ;;

bug reportとか見に行けばいいのかな。