diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-09-26 19:26:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-09-26 19:26:17 +0000 |
commit | 67769069cdaf58d9e0a3e2e9ed48dec0d5726d11 (patch) | |
tree | 0409af3833d49bc21fd553e02a1520b27625a658 /usr.bin/bc | |
parent | fbecf508ab71cf6b87645edc68848ab03052a2cc (diff) |
minor tweaks as i fail to find real bugs
Diffstat (limited to 'usr.bin/bc')
-rw-r--r-- | usr.bin/bc/bc.y | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/usr.bin/bc/bc.y b/usr.bin/bc/bc.y index d5ba135e80f..4d10be82bfb 100644 --- a/usr.bin/bc/bc.y +++ b/usr.bin/bc/bc.y @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: bc.y,v 1.5 2003/09/26 19:06:46 deraadt Exp $ */ +/* $OpenBSD: bc.y,v 1.6 2003/09/26 19:26:16 deraadt Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -31,7 +31,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: bc.y,v 1.5 2003/09/26 19:06:46 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: bc.y,v 1.6 2003/09/26 19:26:16 deraadt Exp $"; #endif /* not lint */ #include <ctype.h> @@ -702,8 +702,7 @@ yywrap(void) if (yyin == NULL) err(1, "cannot open %s", filename); return 0; - } - else if (optind == sargc) { + } else if (optind == sargc) { optind++; yyin = stdin; filename = "stdin"; @@ -794,8 +793,7 @@ main(int argc, char *argv[]) dup(p[1]); close(p[0]); close(p[1]); - } - else { + } else { signal(SIGINT, SIG_IGN); close(STDIN_FILENO); dup(p[0]); |