summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorStef Walter <stefw@gnome.org>2012-03-25 12:33:38 +0200
committerStef Walter <stefw@gnome.org>2012-03-25 12:33:38 +0200
commit441f8554e33658f81939652505c1849798ca07b8 (patch)
tree2022208058f7f7af145d8bf0358598da63bfd898 /docs
parent3a8b4a36d89f8721b5f59547a5bbfaf7dac6bb90 (diff)
downloadlibsecret-441f8554e33658f81939652505c1849798ca07b8.tar.gz
Fix C example code
Diffstat (limited to 'docs')
-rw-r--r--docs/reference/libsecret/libsecret-examples.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/reference/libsecret/libsecret-examples.sgml b/docs/reference/libsecret/libsecret-examples.sgml
index 94ef82a..f885799 100644
--- a/docs/reference/libsecret/libsecret-examples.sgml
+++ b/docs/reference/libsecret/libsecret-examples.sgml
@@ -84,7 +84,7 @@
* The variable argument list is the attributes used to later
* lookup the password. These attributes must conform to the schema.
*/
- secret_password_store (EXAMPLE_SCHEMA, Secret.COLLECTION_DEFAULT, "The label",
+ secret_password_store (EXAMPLE_SCHEMA, SECRET_COLLECTION_DEFAULT, "The label",
"the password", NULL, on_password_stored, NULL,
"number", 8,
"string", "eight",
@@ -103,7 +103,7 @@
* The variable argument list is the attributes used to later
* lookup the password. These attributes must conform to the schema.
*/
- secret_password_store_sync (EXAMPLE_SCHEMA, Secret.COLLECTION_DEFAULT,
+ secret_password_store_sync (EXAMPLE_SCHEMA, SECRET_COLLECTION_DEFAULT,
"The label", "the password", NULL, &error,
"number", 9,
"string", "nine",