diff options
author | Denys Vlasenko | 2015-02-13 11:53:33 +0100 |
---|---|---|
committer | Denys Vlasenko | 2015-02-13 11:53:33 +0100 |
commit | 402afe1cc69ea505c9bf82ffe06e51ffecf694df (patch) | |
tree | 83d2ca101227ff1fa0d3a44da39e4634307d6fb2 /modutils | |
parent | 1fd844267c3ad60e9122e141768e823e6ad74a28 (diff) | |
download | busybox-402afe1cc69ea505c9bf82ffe06e51ffecf694df.zip busybox-402afe1cc69ea505c9bf82ffe06e51ffecf694df.tar.gz |
modprobe-small: fix thinko in previous commit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/modprobe-small.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modprobe-small.c b/modutils/modprobe-small.c index 5989659..ed177bb 100644 --- a/modutils/modprobe-small.c +++ b/modutils/modprobe-small.c @@ -578,7 +578,7 @@ static int already_loaded(const char *name) } fclose(fp); - return ret | 1; + return ret & 1; } #else #define already_loaded(name) 0 |