diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/src/apps/dhparam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libssl/src/apps/dhparam.c b/src/lib/libssl/src/apps/dhparam.c index dc00355b95..8fe3f18d7c 100644 --- a/src/lib/libssl/src/apps/dhparam.c +++ b/src/lib/libssl/src/apps/dhparam.c | |||
@@ -501,7 +501,7 @@ bad: | |||
501 | printf("\tif ((dh->p == NULL) || (dh->g == NULL))\n"); | 501 | printf("\tif ((dh->p == NULL) || (dh->g == NULL))\n"); |
502 | printf("\t\t{ DH_free(dh); return(NULL); }\n"); | 502 | printf("\t\t{ DH_free(dh); return(NULL); }\n"); |
503 | if (dh->length) | 503 | if (dh->length) |
504 | printf("\tdh->length = %ld;\n", dh->length); | 504 | printf("\tdh->length = %d;\n", dh->length); |
505 | printf("\treturn(dh);\n\t}\n"); | 505 | printf("\treturn(dh);\n\t}\n"); |
506 | OPENSSL_free(data); | 506 | OPENSSL_free(data); |
507 | } | 507 | } |