From 24a5f17b6a221c327d292d7236b24717d5e413a9 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 20 Jan 2015 22:13:39 +0000 Subject: Fix logic to check for indent.pro Reviewed-by: Tim Hudson --- util/openssl-format-source | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util') diff --git a/util/openssl-format-source b/util/openssl-format-source index 162103f5e9..8cf27d3af3 100755 --- a/util/openssl-format-source +++ b/util/openssl-format-source @@ -35,7 +35,7 @@ COMMENTS=false # our own indent profile, which is at a well known location INDENT_PROFILE="$HERE/indent.pro" export INDENT_PROFILE -if [ -f "$INDENT_PROFILE" ]; then +if [ ! -f "$INDENT_PROFILE" ]; then echo "$0: unable to locate the openssl indent.pro file" >&2 exit 1 fi -- cgit v1.2.3