summaryrefslogtreecommitdiff
path: root/libnm-util/tests/test-crypto.c
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2009-09-04 09:07:00 -0500
committerDan Williams <dcbw@redhat.com>2009-09-04 09:07:00 -0500
commite5ed391f288d7e2a653aa19d58ae0dedbc9a67f7 (patch)
tree12d1c303a81f35b0b8575490f1ad5a0303f43430 /libnm-util/tests/test-crypto.c
parentcecf8f64c77ceb6c6e783f74a05384cacf5de31f (diff)
libnm-util: allow certificate/key paths
Overload the certificate and key properties to allow paths to the certificates and keys using a special prefix for the property data. Add API to libnm-util for easy certificate path handling, and documentation for NMSetting8021x.
Diffstat (limited to 'libnm-util/tests/test-crypto.c')
-rw-r--r--libnm-util/tests/test-crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnm-util/tests/test-crypto.c b/libnm-util/tests/test-crypto.c
index 75e34d3ad7..18920342d4 100644
--- a/libnm-util/tests/test-crypto.c
+++ b/libnm-util/tests/test-crypto.c
@@ -205,7 +205,7 @@ test_is_pkcs12 (const char *path, gboolean expect_fail, const char *desc)
{
gboolean is_pkcs12;
- is_pkcs12 = crypto_is_pkcs12_file (path);
+ is_pkcs12 = crypto_is_pkcs12_file (path, NULL);
if (expect_fail) {
ASSERT (is_pkcs12 == FALSE, desc,
"unexpected success reading non-PKCS#12 file '%s'",