summaryrefslogtreecommitdiff
path: root/daemon/pkix/tests/unit-test-pkix-parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/pkix/tests/unit-test-pkix-parser.c')
-rw-r--r--daemon/pkix/tests/unit-test-pkix-parser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/daemon/pkix/tests/unit-test-pkix-parser.c b/daemon/pkix/tests/unit-test-pkix-parser.c
index 80504252..e815adf9 100644
--- a/daemon/pkix/tests/unit-test-pkix-parser.c
+++ b/daemon/pkix/tests/unit-test-pkix-parser.c
@@ -27,7 +27,7 @@
#include "common/gkr-location.h"
#include "common/gkr-crypto.h"
-#include "common/gkr-secure-memory.h"
+#include "egg/egg-secure-memory.h"
#include "pkix/gkr-pkix-parser.h"
@@ -147,7 +147,7 @@ ask_password (GkrPkixParser *parser, GQuark loc, gkrconstid digest,
/* Return "", null, and "booo" in that order */
switch (st) {
case 0:
- *password = gkr_secure_strdup ("");
+ *password = egg_secure_strdup ("");
return TRUE;
case 1:
*password = NULL;
@@ -155,7 +155,7 @@ ask_password (GkrPkixParser *parser, GQuark loc, gkrconstid digest,
case 2:
/* Most of our test encrypted stuff use this password */
g_print ("getting password 'booo' for: %s\n", details);
- *password = gkr_secure_strdup ("booo");
+ *password = egg_secure_strdup ("booo");
return TRUE;
default:
msg = g_strdup_printf ("decryption didn't work for: %s", g_quark_to_string (loc));