libbb,crond,lash: fix getopt32 (don't know how it managed to slip through)
*: fcntl(fd, F_GETFL) doesn't require third parameter at all.
This commit is contained in:
@@ -726,7 +726,7 @@ opentrace(void)
|
||||
}
|
||||
}
|
||||
#ifdef O_APPEND
|
||||
flags = fcntl(fileno(tracefile), F_GETFL, 0);
|
||||
flags = fcntl(fileno(tracefile), F_GETFL);
|
||||
if (flags >= 0)
|
||||
fcntl(fileno(tracefile), F_SETFL, flags | O_APPEND);
|
||||
#endif
|
||||
@@ -8565,7 +8565,7 @@ preadfd(void)
|
||||
|
||||
if (nr < 0) {
|
||||
if (parsefile->fd == 0 && errno == EWOULDBLOCK) {
|
||||
int flags = fcntl(0, F_GETFL, 0);
|
||||
int flags = fcntl(0, F_GETFL);
|
||||
if (flags >= 0 && flags & O_NONBLOCK) {
|
||||
flags &=~ O_NONBLOCK;
|
||||
if (fcntl(0, F_SETFL, flags) >= 0) {
|
||||
|
@@ -1524,7 +1524,7 @@ int lash_main(int argc_l, char **argv_l)
|
||||
}
|
||||
}
|
||||
|
||||
opt = getopt32(argc_l, argv_l, "+ic:", &local_pending_command);
|
||||
opt = getopt32(argv_l, "+ic:", &local_pending_command);
|
||||
#define LASH_OPT_i (1<<0)
|
||||
#define LASH_OPT_c (1<<1)
|
||||
if (opt & LASH_OPT_c) {
|
||||
|
Reference in New Issue
Block a user