projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cac521
)
xopen3(O_RDONLY) -> xopen(O_RDONLY).
author
Denis Vlasenko
<vda.linux@googlemail.com>
Sat, 9 Sep 2006 12:25:20 +0000
(12:25 -0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Sat, 9 Sep 2006 12:25:20 +0000
(12:25 -0000)
modutils/insmod.c
patch
|
blob
|
history
diff --git
a/modutils/insmod.c
b/modutils/insmod.c
index e57dd06dd0a3aee448ac619e55a769584be209be..249563435a241f86bcb8e95f4c88879f9d81451e 100644
(file)
--- a/
modutils/insmod.c
+++ b/
modutils/insmod.c
@@
-4325,7
+4325,7
@@
int insmod_ng_main( int argc, char **argv)
strcat(options, " ");
}
- fd = xopen
3(filename, O_RDONLY, 0
);
+ fd = xopen
(filename, O_RDONLY
);
fstat(fd, &st);
len = st.st_size;