summaryrefslogtreecommitdiff
path: root/libsecret/secret-schemas.c
diff options
context:
space:
mode:
authorPeter Bloomfield <pbloomfield@bellsouth.net>2013-03-13 12:43:23 -0400
committerStef Walter <stefw@gnome.org>2013-03-14 06:52:42 +0100
commit3cb4f0e17896a9f6110ad7b7194b656142bdb77d (patch)
tree407e73dbebc9ee0f4f0b6adc600c698c70751129 /libsecret/secret-schemas.c
parent164ec0a756ac15e5bfec96fdbdf1c9ffee929cb2 (diff)
downloadlibsecret-3cb4f0e17896a9f6110ad7b7194b656142bdb77d.tar.gz
Do not quote NULL sentinel
https://bugzilla.gnome.org/show_bug.cgi?id=695791
Diffstat (limited to 'libsecret/secret-schemas.c')
-rw-r--r--libsecret/secret-schemas.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsecret/secret-schemas.c b/libsecret/secret-schemas.c
index b5c511b..16f120e 100644
--- a/libsecret/secret-schemas.c
+++ b/libsecret/secret-schemas.c
@@ -32,7 +32,7 @@ static const SecretSchema note_schema = {
"org.gnome.keyring.Note",
SECRET_SCHEMA_NONE,
{
- { "NULL", 0 },
+ { NULL, 0 },
}
};
@@ -80,7 +80,7 @@ static const SecretSchema network_schema = {
{ "port", SECRET_SCHEMA_ATTRIBUTE_INTEGER },
{ "server", SECRET_SCHEMA_ATTRIBUTE_STRING },
{ "authtype", SECRET_SCHEMA_ATTRIBUTE_STRING },
- { "NULL", 0 },
+ { NULL, 0 },
}
};