From 54c42411cb481f74c2c2de3a25ef875daaecffa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 31 Mar 2006 01:49:37 +0000 Subject: [PATCH] _hx509_map_file changed prototype. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16869 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hx509/ks_file.c | 2 +- lib/hx509/ks_p12.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/hx509/ks_file.c b/lib/hx509/ks_file.c index 4dab673cf..16b8150b5 100644 --- a/lib/hx509/ks_file.c +++ b/lib/hx509/ks_file.c @@ -113,7 +113,7 @@ parse_file_der(const char *fn, Certificate *t) void *data; int ret; - ret = _hx509_map_file(fn, &data, &length); + ret = _hx509_map_file(fn, &data, &length, NULL); if (ret) return ret; diff --git a/lib/hx509/ks_p12.c b/lib/hx509/ks_p12.c index 3b0792306..b3a568f06 100644 --- a/lib/hx509/ks_p12.c +++ b/lib/hx509/ks_p12.c @@ -324,7 +324,7 @@ p12_init(hx509_context context, goto out; } - ret = _hx509_map_file(residue, &buf, &len); + ret = _hx509_map_file(residue, &buf, &len, NULL); if (ret) goto out;