summaryrefslogtreecommitdiff
path: root/src/ne_ssl.h
diff options
context:
space:
mode:
authorjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2005-04-11 13:55:45 +0000
committerjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2005-04-11 13:55:45 +0000
commit98e86350e6239c66e314ea8e039944481c793939 (patch)
tree18fe6bfd8fc6a6352ffa1a8a1b88aa30a1abdf77 /src/ne_ssl.h
parente922f2b3e23aca9b335b973f0b3ad502e3b34cb3 (diff)
downloadneon-98e86350e6239c66e314ea8e039944481c793939.tar.gz
* src/ne_ssl.h (ne_ssl_clicert_name): Take const clicert argument.
* src/ne_openssl.c, src/ne_gnutls.c: Adapt likewise. git-svn-id: http://svn.webdav.org/repos/projects/neon/trunk@559 61a7d7f5-40b7-0310-9c16-bb0ea8cb1845
Diffstat (limited to 'src/ne_ssl.h')
-rw-r--r--src/ne_ssl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ne_ssl.h b/src/ne_ssl.h
index 9ad5dd1..40c36c7 100644
--- a/src/ne_ssl.h
+++ b/src/ne_ssl.h
@@ -1,6 +1,6 @@
/*
SSL/TLS abstraction layer for neon
- Copyright (C) 2003-2004, Joe Orton <joe@manyfish.co.uk>
+ Copyright (C) 2003-2005, Joe Orton <joe@manyfish.co.uk>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
@@ -115,7 +115,7 @@ ne_ssl_client_cert *ne_ssl_clicert_read(const char *filename);
/* Returns the "friendly name" given for the client cert, or NULL if
* none given. This can be called before or after the client cert has
* been decrypted. Returns a NUL-terminated, UTF-8-encoded string. */
-const char *ne_ssl_clicert_name(ne_ssl_client_cert *ccert);
+const char *ne_ssl_clicert_name(const ne_ssl_client_cert *ccert);
/* Returns non-zero if client cert is encrypted. */
int ne_ssl_clicert_encrypted(const ne_ssl_client_cert *ccert);