commit | d5d614c5f48a9151a257df717b46b8a850c1428b | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Sat Sep 09 12:25:20 2006 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Sat Sep 09 12:25:20 2006 +0000 |
tree | 2b609c19b821cfe9291ac2123b43516024d8c07d | |
parent | 9cac521f07550764e94c469d70b22ad5c194855a [diff] |
xopen3(O_RDONLY) -> xopen(O_RDONLY).
diff --git a/modutils/insmod.c b/modutils/insmod.c index e57dd06..2495634 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c
@@ -4325,7 +4325,7 @@ strcat(options, " "); } - fd = xopen3(filename, O_RDONLY, 0); + fd = xopen(filename, O_RDONLY); fstat(fd, &st); len = st.st_size;