diff options
author | 1998-04-27 16:00:24 +0000 | |
---|---|---|
committer | 1998-04-27 16:00:24 +0000 | |
commit | eebbe59be00f66ae8b212b5dac3e45b57c5c50e2 (patch) | |
tree | cab85cb6a8c723775e5797d377974d48fd27dc51 | |
parent | Historically, talk pays no attention to hostnames, so if you've typed (diff) | |
download | wireguard-openbsd-eebbe59be00f66ae8b212b5dac3e45b57c5c50e2.tar.xz wireguard-openbsd-eebbe59be00f66ae8b212b5dac3e45b57c5c50e2.zip |
Add missing parens. Peter Galbavy <peter@wonderland.org>
-rw-r--r-- | gnu/usr.bin/perl/utils/h2ph.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/utils/h2ph.PL b/gnu/usr.bin/perl/utils/h2ph.PL index 1b469daab83..c1809ecf854 100644 --- a/gnu/usr.bin/perl/utils/h2ph.PL +++ b/gnu/usr.bin/perl/utils/h2ph.PL @@ -119,7 +119,7 @@ foreach $file (@ARGV) { "eval 'sub $name $proto\{\n$t ${args}eval \"$new\";\n$t}' unless defined(\&$name);\n"; } else { - print OUT "unless defined(\&$name) {\nsub $name $proto\{\n ${args}eval \"$new\";\n}\n}\n"; + print OUT "unless(defined(\&$name)) {\nsub $name $proto\{\n ${args}eval \"$new\";\n}\n}\n"; } %curargs = (); } |