Changeset 7962
- Timestamp:
- 03/13/07 22:13:58 (1 year ago)
- Files:
-
- trunk/bootscripts/ChangeLog (modified) (1 diff)
- trunk/bootscripts/lfs/init.d/functions (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/bootscripts/ChangeLog
r7931 r7962 1 2007-03-13 Dan Nicholson <dnicholson@linuxfromscratch.org> 2 * lfs/init.d/functions: If pidofproc() is passed the -p argument 3 it can bomb testing a null variable with an integer expression. 4 1 5 2007-02-22 Dan Nicholson <dnicholson@linuxfromscratch.org> 2 6 * lfs/init.d/mountfs, lfs/init.d/console, lfs/init.d/setclock, trunk/bootscripts/lfs/init.d/functions
r7929 r7962 378 378 fi 379 379 380 if [ "${silent}" -ne"1" ]; then380 if [ "${silent}" != "1" ]; then 381 381 echo "${pidlist}" 382 382 fi … … 391 391 else 392 392 pidlist=`pidof -o $$ -o $PPID -x "$1"` 393 if [ " x${silent}" != "x1" ]; then393 if [ "${silent}" != "1" ]; then 394 394 echo "${pidlist}" 395 395 fi
