diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-14 02:23:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-14 02:23:43 +0000 |
commit | ea62077b850076c4d7dc3cf78ebd1888928c6ddf (patch) | |
tree | 37b7584ae40b99edb5583fbc4392b62ffdadf278 /miscutils/crontab.c | |
parent | 88ca06769028e442bf873b270c176ca0e9f021f8 (diff) | |
download | busybox-w32-ea62077b850076c4d7dc3cf78ebd1888928c6ddf.tar.gz busybox-w32-ea62077b850076c4d7dc3cf78ebd1888928c6ddf.tar.bz2 busybox-w32-ea62077b850076c4d7dc3cf78ebd1888928c6ddf.zip |
add open_read_close() and similar stuff
Diffstat (limited to 'miscutils/crontab.c')
-rw-r--r-- | miscutils/crontab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/crontab.c b/miscutils/crontab.c index a3bfd495d..6ae1b020c 100644 --- a/miscutils/crontab.c +++ b/miscutils/crontab.c | |||
@@ -171,7 +171,7 @@ int crontab_main(int ac, char **av) | |||
171 | } | 171 | } |
172 | EditFile(caller, tmp); | 172 | EditFile(caller, tmp); |
173 | remove(tmp); | 173 | remove(tmp); |
174 | lseek(fd, 0L, 0); | 174 | lseek(fd, 0L, SEEK_SET); |
175 | repFd = fd; | 175 | repFd = fd; |
176 | } | 176 | } |
177 | option = REPLACE; | 177 | option = REPLACE; |