summaryrefslogtreecommitdiff
path: root/postprocess
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2014-02-19 14:40:45 +0100
committerMichael Stahl <mstahl@redhat.com>2014-02-19 15:25:00 +0100
commit25b1c6a1f16175fceec0176bf64e2e8fcc8871f1 (patch)
tree7d73061cbc324734322e303d96a67f97b8d6527b /postprocess
parentbea557c3268a7624f11ff76076ed58699abf6d02 (diff)
fdo#75206: use 'ne' for string comparison
Change-Id: I0d059933786119c3c26202c7b48d793404e5a0eb Signed-off-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'postprocess')
-rw-r--r--postprocess/signing/signing.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/postprocess/signing/signing.pl b/postprocess/signing/signing.pl
index fc17092594d5..875076ac7c48 100644
--- a/postprocess/signing/signing.pl
+++ b/postprocess/signing/signing.pl
@@ -47,7 +47,7 @@ if ( $#ARGV < 2 ) {
exit(1);
}
@args = parse_options();
-get_exclude_files() if ($opt_exclude != "");
+get_exclude_files() if ($opt_exclude ne "");
@files_to_sign = get_files(\@args);
if ( $opt_log ) { # logging
open(LOG,">$opt_log") || die "Can't open log file $opt_log\n";