summaryrefslogtreecommitdiffstats
path: root/eurephiadm/parse_certificate_files.c
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2009-09-05 01:10:32 +0200
committerDavid Sommerseth <dazo@users.sourceforge.net>2009-09-05 01:10:32 +0200
commit62ea92c1c38ef83adbec1b56ef7968941d128553 (patch)
tree30b4a1158bcaa1aad6c606f44b643b04e0cf704b /eurephiadm/parse_certificate_files.c
parent727d91f8a4d038f07618ceaafb073a2eb00eb749 (diff)
downloadeurephia-62ea92c1c38ef83adbec1b56ef7968941d128553.tar.gz
eurephia-62ea92c1c38ef83adbec1b56ef7968941d128553.tar.xz
eurephia-62ea92c1c38ef83adbec1b56ef7968941d128553.zip
Cleaned up and added some missing comments
Diffstat (limited to 'eurephiadm/parse_certificate_files.c')
-rw-r--r--eurephiadm/parse_certificate_files.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/eurephiadm/parse_certificate_files.c b/eurephiadm/parse_certificate_files.c
index 1a5d3e1..4925ddf 100644
--- a/eurephiadm/parse_certificate_files.c
+++ b/eurephiadm/parse_certificate_files.c
@@ -109,12 +109,12 @@ char *ExtractCertInfo(const char *module, X509 *cert, const char *fieldname) {
* Internal function, usually called via the Cert_ParseFile(...) macro. Parses a certificate
* file of a given format.
*
- * @param cfile File name of the input file
- * @param cformat Certificate format of the file
+ * @param module String containing a module name, only used in error situations
+ * @param certfile File name of the input file
+ * @param certfile_format Certificate format of the file
*
* @return Returns a certinfo struct pointer with the parsed result on success, otherwise NULL.
*/
-
certinfo *_Cert_ParseFile(const char *module, const char *certfile, int certfile_format) {
BIO *bio_err = NULL;
PKCS12 *p12 = NULL;