summaryrefslogtreecommitdiff
path: root/mk/buildlink3
diff options
context:
space:
mode:
authorjlam <jlam>2004-01-07 17:40:36 +0000
committerjlam <jlam>2004-01-07 17:40:36 +0000
commitf2e65730faf676bd615608dfa88e57be0f3b6e25 (patch)
tree6783e58c8d0083043ac1740f72f9b21627aacaa2 /mk/buildlink3
parent241f21ceaeba87e10cf05bf00b59c6393ffb3c95 (diff)
downloadpkgsrc-f2e65730faf676bd615608dfa88e57be0f3b6e25.tar.gz
Make the wrapper exit with error code 2 to signify a buffer overflow to
avoid infinite loops.
Diffstat (limited to 'mk/buildlink3')
-rw-r--r--mk/buildlink3/buffer4
1 files changed, 3 insertions, 1 deletions
diff --git a/mk/buildlink3/buffer b/mk/buildlink3/buffer
index 8dd45bd0e8d..52a91a79732 100644
--- a/mk/buildlink3/buffer
+++ b/mk/buildlink3/buffer
@@ -1,4 +1,4 @@
-# $NetBSD: buffer,v 1.2 2004/01/07 17:31:02 jlam Exp $
+# $NetBSD: buffer,v 1.3 2004/01/07 17:40:36 jlam Exp $
#
# Fill the buffer if it's empty, and shift the arguments. The next
# argument checked by the cache and logic files is taken from the
@@ -47,6 +47,7 @@ case ${buf1}${buf2}${buf3}${buf4}${buf5} in
elif $test -z "$buf3"; then buf3="$R$1"
elif $test -z "$buf4"; then buf4="$R$1"
elif $test -z "$buf5"; then buf5="$R$1"
+ else exit 2
fi
;;
esac
@@ -63,6 +64,7 @@ case ${buf1}${buf2}${buf3}${buf4}${buf5} in
elif $test -z "$buf3"; then buf3="$arg"
elif $test -z "$buf4"; then buf4="$arg"
elif $test -z "$buf5"; then buf5="$arg"
+ else exit 2
fi
;;
esac