summaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2006-06-09 10:11:44 +0000
committerrillig <rillig@NetBSD.org>2006-06-09 10:11:44 +0000
commit2e91b4b8d59f02504c7ab7ea2ccc9cf822ff37bb (patch)
tree93701eca6efa9ac4e2b8421346907b8861b44088 /gnu/usr.bin
parent2df93916c9bb85e2bc298b5490c25a65a55feb56 (diff)
The shell variable $@ should never be used without surrounding "quotes".
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/c89/c89.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/c89/c89.sh b/gnu/usr.bin/c89/c89.sh
index 92d536c6b73..1bb79ebf092 100644
--- a/gnu/usr.bin/c89/c89.sh
+++ b/gnu/usr.bin/c89/c89.sh
@@ -30,4 +30,4 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
-exec /usr/bin/cc -std=c89 ${1+$@}
+exec /usr/bin/cc -std=c89 ${1+"$@"}