Package: cpufrequtils
Version: 002-5
Severity: important

In /etc/init.d/loadcpufreq (debian/cpufrequtils.loadcpufreq.init in
the Debian source package) there's:

    if [ ! -f $CPUINFO ] ; then
        echo $CPUINFO not detected... >2
        return
    fi

This sends output to a file named '2' instead of stderr.

Obvious fix:

    if [ ! -f $CPUINFO ] ; then
        echo $CPUINFO not detected... >&2
        return
    fi

regards,
-mika-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to