aboutsummaryrefslogtreecommitdiffstats
path: root/fips/fips_utl.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2011-03-24 22:59:02 +0000
committerRichard Levitte <levitte@openssl.org>2011-03-24 22:59:02 +0000
commitc6dbe908959f1e1b1076f9ed2cb34bf2416c7226 (patch)
tree6e34c9cb2b45724bb16b47969f453f58e8993cb0 /fips/fips_utl.h
parent37942b93af4fca91ca915d4da1f68d7965a9522f (diff)
downloadopenssl-c6dbe908959f1e1b1076f9ed2cb34bf2416c7226.tar.gz
make update
Diffstat (limited to 'fips/fips_utl.h')
-rw-r--r--fips/fips_utl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/fips/fips_utl.h b/fips/fips_utl.h
index 98cb5915a2..71147a2a31 100644
--- a/fips/fips_utl.h
+++ b/fips/fips_utl.h
@@ -70,8 +70,9 @@ static void put_err_cb(int lib, int func,int reason,const char *file,int line)
{
if (no_err)
return;
- fprintf(stderr, "ERROR:lib=%d,func=%d,reason=%d"
+ fprintf(stderr, "ERROR:%08lX:lib=%d,func=%d,reason=%d"
":file=%s:line=%d\n",
+ ERR_PACK(lib, func, reason),
lib, func, reason, file, line);
}