aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-09 12:25:20 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-09 12:25:20 +0000
commit6e9e480b223e6762ac6205a5d4b28514593d88dd (patch)
tree2b609c19b821cfe9291ac2123b43516024d8c07d
parent5dff2613d78e3a97fb2f0173b729e225278981ab (diff)
downloadbusybox-w32-6e9e480b223e6762ac6205a5d4b28514593d88dd.tar.gz
busybox-w32-6e9e480b223e6762ac6205a5d4b28514593d88dd.tar.bz2
busybox-w32-6e9e480b223e6762ac6205a5d4b28514593d88dd.zip
xopen3(O_RDONLY) -> xopen(O_RDONLY).
git-svn-id: svn://busybox.net/trunk/busybox@16082 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--modutils/insmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c
index e57dd06dd..249563435 100644
--- a/modutils/insmod.c
+++ b/modutils/insmod.c
@@ -4325,7 +4325,7 @@ int insmod_ng_main( int argc, char **argv)
4325 strcat(options, " "); 4325 strcat(options, " ");
4326 } 4326 }
4327 4327
4328 fd = xopen3(filename, O_RDONLY, 0); 4328 fd = xopen(filename, O_RDONLY);
4329 4329
4330 fstat(fd, &st); 4330 fstat(fd, &st);
4331 len = st.st_size; 4331 len = st.st_size;