aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-10-30 15:48:14 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-10-30 15:48:14 +0000
commit2822ce35c6ebf471e1189a694e622f29b71281b8 (patch)
treec33940cdc852066a2822c16b7cc11c55ee46ad1f /package/base-files
parent0cd7c7c114ea4c1c3b9cb67a7229f6866b701c6c (diff)
downloadupstream-2822ce35c6ebf471e1189a694e622f29b71281b8.tar.gz
upstream-2822ce35c6ebf471e1189a694e622f29b71281b8.tar.bz2
upstream-2822ce35c6ebf471e1189a694e622f29b71281b8.zip
[package] base-files: fix typo
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28681 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rw-r--r--package/base-files/files/lib/upgrade/common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh
index 2126ca1c38..a2c0dbaeb8 100644
--- a/package/base-files/files/lib/upgrade/common.sh
+++ b/package/base-files/files/lib/upgrade/common.sh
@@ -79,7 +79,7 @@ run_ramfs() { # <command> [...]
kill_remaining() { # [ <signal> ]
local sig="${1:-TERM}"
- echo -n "Sending $sig to remaing processes ... "
+ echo -n "Sending $sig to remaining processes ... "
top -bn1 | while read pid ppid user stat vsz pvsz pcpu cmd args; do
case "$pid" in
[0-9]*) : ;;