int → bool

This commit is contained in:
tg 2015-02-06 09:42:46 +00:00
parent 3be80b75ed
commit f235766a3d

7
exec.c
View File

@ -23,7 +23,7 @@
#include "sh.h" #include "sh.h"
__RCSID("$MirOS: src/bin/mksh/exec.c,v 1.140 2015/02/06 09:42:08 tg Exp $"); __RCSID("$MirOS: src/bin/mksh/exec.c,v 1.141 2015/02/06 09:42:46 tg Exp $");
#ifndef MKSH_DEFAULT_EXECSHELL #ifndef MKSH_DEFAULT_EXECSHELL
#define MKSH_DEFAULT_EXECSHELL "/bin/sh" #define MKSH_DEFAULT_EXECSHELL "/bin/sh"
@ -556,7 +556,8 @@ comexec(struct op *t, struct tbl * volatile tp, const char **ap,
ap++; ap++;
flags |= XEXEC; flags |= XEXEC;
} else if (tp->val.f == c_command) { } else if (tp->val.f == c_command) {
int optc, saw_p = 0; int optc;
bool saw_p = false;
/* /*
* Ugly dealing with options in two places (here * Ugly dealing with options in two places (here
@ -564,7 +565,7 @@ comexec(struct op *t, struct tbl * volatile tp, const char **ap,
*/ */
ksh_getopt_reset(&builtin_opt, 0); ksh_getopt_reset(&builtin_opt, 0);
while ((optc = ksh_getopt(ap, &builtin_opt, ":p")) == 'p') while ((optc = ksh_getopt(ap, &builtin_opt, ":p")) == 'p')
saw_p = 1; saw_p = true;
if (optc != EOF) if (optc != EOF)
/* command -vV or something */ /* command -vV or something */
break; break;