summaryrefslogtreecommitdiff
path: root/lib/openpgp
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2011-11-09 00:43:58 +0100
committerSimon Josefsson <simon@josefsson.org>2011-11-09 00:48:15 +0100
commit21caff388b360fca7a774ed5206447ba9ebf4f94 (patch)
tree0ff149b18a77253e9cb9f5a6a26102cc7b2d83f4 /lib/openpgp
parentfe0a92df94869abd48a8e7a576f9b81867a9c420 (diff)
downloadgnutls-21caff388b360fca7a774ed5206447ba9ebf4f94.tar.gz
Simplify static library renaming hack.
Diffstat (limited to 'lib/openpgp')
-rw-r--r--lib/openpgp/gnutls_openpgp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/openpgp/gnutls_openpgp.c b/lib/openpgp/gnutls_openpgp.c
index b1c7c1f866..ae7320aaf6 100644
--- a/lib/openpgp/gnutls_openpgp.c
+++ b/lib/openpgp/gnutls_openpgp.c
@@ -452,7 +452,7 @@ gnutls_certificate_set_openpgp_key_file2 (gnutls_certificate_credentials_t
return GNUTLS_E_FILE_ERROR;
}
- cert.data = gl_read_binary_file (certfile, &size);
+ cert.data = read_binary_file (certfile, &size);
cert.size = (unsigned int) size;
if (cert.data == NULL)
{
@@ -460,7 +460,7 @@ gnutls_certificate_set_openpgp_key_file2 (gnutls_certificate_credentials_t
return GNUTLS_E_FILE_ERROR;
}
- key.data = gl_read_binary_file (keyfile, &size);
+ key.data = read_binary_file (keyfile, &size);
key.size = (unsigned int) size;
if (key.data == NULL)
{
@@ -549,7 +549,7 @@ gnutls_certificate_set_openpgp_keyring_file (gnutls_certificate_credentials_t c,
return GNUTLS_E_INVALID_REQUEST;
}
- ring.data = gl_read_binary_file (file, &size);
+ ring.data = read_binary_file (file, &size);
ring.size = (unsigned int) size;
if (ring.data == NULL)
{