diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-02 01:13:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-02 01:13:45 +0200 |
commit | 963f52fc59f5f54e0e140f90717d7dba989ccaac (patch) | |
tree | 3e24249c1f81596cca5298e9d60c8cf806509289 | |
parent | acabf8fcb86302e55e01f0a20d5ff9914791416a (diff) | |
download | busybox-w32-963f52fc59f5f54e0e140f90717d7dba989ccaac.tar.gz busybox-w32-963f52fc59f5f54e0e140f90717d7dba989ccaac.tar.bz2 busybox-w32-963f52fc59f5f54e0e140f90717d7dba989ccaac.zip |
fix a typo in prev commit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | applets/usage_pod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/usage_pod.c b/applets/usage_pod.c index 058e0c842..c1182fdc6 100644 --- a/applets/usage_pod.c +++ b/applets/usage_pod.c | |||
@@ -66,7 +66,7 @@ int main(void) | |||
66 | 66 | ||
67 | names = applet_names; | 67 | names = applet_names; |
68 | usage = usage_messages; | 68 | usage = usage_messages; |
69 | while (*names && usage) { | 69 | while (*names && *usage) { |
70 | if (*names >= 'a' && *names <= 'z' | 70 | if (*names >= 'a' && *names <= 'z' |
71 | && *usage != NOUSAGE_STR[0] | 71 | && *usage != NOUSAGE_STR[0] |
72 | ) { | 72 | ) { |