aboutsummaryrefslogtreecommitdiffstats
path: root/test/README
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2019-03-30 11:22:51 +1000
committerPauli <paul.dale@oracle.com>2019-03-30 11:22:51 +1000
commitf3448f5481a8d1f6fbf5fd05caaca229af0b87f7 (patch)
treefc295589ac061c441f79b83909261194aacf3141 /test/README
parent875c9a9a342383b3c3fd74a5c872bbf3fe9cdbd3 (diff)
downloadopenssl-f3448f5481a8d1f6fbf5fd05caaca229af0b87f7.tar.gz
issue-8493: Fix for filenames with newlines using openssl dgst
The output format now matches coreutils *dgst tools. [ edited to remove trailing white space ] Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/8578)
Diffstat (limited to 'test/README')
-rw-r--r--test/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/README b/test/README
index 37722e79f3..ebe7784605 100644
--- a/test/README
+++ b/test/README
@@ -114,7 +114,7 @@ Generic form of C test executables
int observed;
observed = function(); /* Call the code under test */
- if (!TEST_int_equal(observed, 2)) /* Check the result is correct */
+ if (!TEST_int_eq(observed, 2)) /* Check the result is correct */
goto end; /* Exit on failure - optional */
testresult = 1; /* Mark the test case a success */