summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2014-02-19 14:40:45 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-21 09:04:19 +0000
commit703566b1dd752f7099d589da8617382a255b1d5e (patch)
tree2349afa6b679cbec3c1a28da0d7e4cc26e21e099
parent4c3d28b3ce57b17efd5ac49385b249a27feebb46 (diff)
fdo#75206: use 'ne' for string comparison
Change-Id: I0d059933786119c3c26202c7b48d793404e5a0eb Reviewed-on: https://gerrit.libreoffice.org/8129 Reviewed-by: Michael Stahl <mstahl@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-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";