From 058aa436c9aa104deb73d2e55532ae9175ef7db8 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sat, 29 Jun 2013 20:39:26 -0700 Subject: scripts/alternate-stream: Fix string format injection --- scripts/alternate-stream | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/alternate-stream b/scripts/alternate-stream index 044edb24..ea8c8750 100755 --- a/scripts/alternate-stream +++ b/scripts/alternate-stream @@ -20,9 +20,9 @@ while ( $line = ) { } if ( $alt == 0 ) { - printf(OFH_ONE $line); + print(OFH_ONE $line); } elsif ( $alt == 1 ) { - printf(OFH_TWO $line); + print(OFH_TWO $line); } else { printf("Unhandled: '%s'\n", chomp($line)); } -- cgit v1.2.3