diff options
author | rnordier <rnordier@FreeBSD.org> | 1999-01-23 17:05:54 +0000 |
---|---|---|
committer | rnordier <rnordier@FreeBSD.org> | 1999-01-23 17:05:54 +0000 |
commit | e4d9c6dd7465bb23ee644559e8572495bcee717a (patch) | |
tree | 6421e72a8d5b3fbde4ecb19d716c56c9835fdeda /share/examples/printing | |
parent | d8d0694884001d7b158f8b91cba1311b8ae04456 (diff) | |
download | FreeBSD-src-e4d9c6dd7465bb23ee644559e8572495bcee717a.zip FreeBSD-src-e4d9c6dd7465bb23ee644559e8572495bcee717a.tar.gz |
Fix wrong exit code.
PR: 9321
Submitted by: Bob Van Valzah <Bob@whitebarn.com>
Diffstat (limited to 'share/examples/printing')
-rw-r--r-- | share/examples/printing/ifhp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/examples/printing/ifhp b/share/examples/printing/ifhp index 373325b..ace0fab 100644 --- a/share/examples/printing/ifhp +++ b/share/examples/printing/ifhp @@ -26,7 +26,7 @@ else # Plain text or HP/PCL, so just print it directly; print a form # at the end to eject the last page. # - echo "$first_line" && cat && printf "\f" && exit 2 + echo "$first_line" && cat && printf "\f" && exit 0 fi exit 2 |