summaryrefslogtreecommitdiffstatshomepage
path: root/main.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-06-27 09:03:03 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-06-27 09:03:03 +0000
commitb1fb120d0a24fcf56a9796331ce7aa0b603be57b (patch)
tree53c146bf92efcaa51dcbf5cc866eb2c991cfc7ee /main.c
parent2da2307a9d5545dfde44035f2048dab68ee71364 (diff)
downloadmandoc-b1fb120d0a24fcf56a9796331ce7aa0b603be57b.tar.gz
mandoc-b1fb120d0a24fcf56a9796331ce7aa0b603be57b.tar.zst
mandoc-b1fb120d0a24fcf56a9796331ce7aa0b603be57b.zip
Removed escape-deprecation note (better solution in progress, schwarze@openbsd.org).
Using EXIT_FAILURE for parse errors (nicm@openbsd.org). Fixed use of warn/warnx (nicm@openbsd.org). Fixed use of getsubopt (nicm@openbsd.org).
Diffstat (limited to 'main.c')
-rw-r--r--main.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/main.c b/main.c
index 98c6e4cd..4e1e587b 100644
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.31 2009/06/18 10:32:00 kristaps Exp $ */
+/* $Id: main.c,v 1.32 2009/06/27 09:03:03 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -132,19 +132,19 @@ main(int argc, char *argv[])
switch (c) {
case ('f'):
if ( ! foptions(&curp.fflags, optarg))
- return(0);
+ return(EXIT_FAILURE);
break;
case ('m'):
if ( ! moptions(&curp.inttype, optarg))
- return(0);
+ return(EXIT_FAILURE);
break;
case ('T'):
if ( ! toptions(&curp.outtype, optarg))
- return(0);
+ return(EXIT_FAILURE);
break;
case ('W'):
if ( ! woptions(&curp.wflags, optarg))
- return(0);
+ return(EXIT_FAILURE);
break;
case ('V'):
version();
@@ -318,7 +318,7 @@ fdesc(struct buf *blk, struct buf *ln, struct curparse *curp)
*/
if (-1 == fstat(curp->fd, &st))
- warnx("%s", curp->file);
+ warn("%s", curp->file);
else if ((size_t)st.st_blksize > sz)
sz = st.st_blksize;
@@ -581,7 +581,7 @@ foptions(int *fflags, char *arg)
NO_IGN_MACRO | NO_IGN_CHARS;
break;
default:
- warnx("bad argument: -f%s", arg);
+ warnx("bad argument: -f%s", suboptarg);
return(0);
}
@@ -616,7 +616,7 @@ woptions(int *wflags, char *arg)
*wflags |= WARN_WERR;
break;
default:
- warnx("bad argument: -W%s", arg);
+ warnx("bad argument: -W%s", suboptarg);
return(0);
}