summaryrefslogtreecommitdiffstats
path: root/python/environs
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-13 10:36:32 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-13 10:36:32 +0000
commiteb4def6b08edcfe68b338cdec823c131fea171d4 (patch)
tree96f7e624362f86efb2f18bf3ec8ca8a04d3819bf /python/environs
parenta959a65fd5467fbdb9123d52943f94c264237fdc (diff)
downloadlasso-eb4def6b08edcfe68b338cdec823c131fea171d4.tar.gz
lasso-eb4def6b08edcfe68b338cdec823c131fea171d4.tar.xz
lasso-eb4def6b08edcfe68b338cdec823c131fea171d4.zip
*** empty log message ***
Diffstat (limited to 'python/environs')
-rw-r--r--python/environs/py_server.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/environs/py_server.c b/python/environs/py_server.c
index 6f625829..f8e4d596 100644
--- a/python/environs/py_server.c
+++ b/python/environs/py_server.c
@@ -83,17 +83,17 @@ PyObject *server_add_provider(PyObject *self, PyObject *args) {
PyObject *server_obj;
gchar *metadata;
gchar *public_key = NULL;
- gchar *certificat = NULL;
+ gchar *ca_certificat = NULL;
if (CheckArgs(args, "OSss:server_add_provider")) {
if(!PyArg_ParseTuple(args, (char *) "Oszz:server_add_provider",
- &server_obj, &metadata, &public_key, &certificat))
+ &server_obj, &metadata, &public_key, &ca_certificat))
return NULL;
}
else return NULL;
lasso_server_add_provider(LassoServer_get(server_obj),
- metadata, public_key, certificat);
+ metadata, public_key, ca_certificat);
Py_INCREF(Py_None);
return (Py_None);