aboutsummaryrefslogtreecommitdiff
path: root/util/openssl-format-source
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-20 22:13:39 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:20:07 +0000
commit24a5f17b6a221c327d292d7236b24717d5e413a9 (patch)
treec532c75ea01c951cba24c388b3a20934d8559006 /util/openssl-format-source
parent90b9c78b305781015248c7963e0e6b2215ecb8c2 (diff)
downloadopenssl-24a5f17b6a221c327d292d7236b24717d5e413a9.zip
openssl-24a5f17b6a221c327d292d7236b24717d5e413a9.tar.gz
openssl-24a5f17b6a221c327d292d7236b24717d5e413a9.tar.bz2
Fix logic to check for indent.pro
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'util/openssl-format-source')
-rwxr-xr-xutil/openssl-format-source2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/openssl-format-source b/util/openssl-format-source
index 162103f..8cf27d3 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