2008-05-01 Dan Williams <dcbw@redhat.com>

* src/nm-vpnc-service.c
		- (validate_one_property): allow the 'name' property



git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@3627 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2008-05-02 03:03:57 +00:00
parent f9535e1140
commit 53aa4e3132
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2008-05-01 Dan Williams <dcbw@redhat.com>
* src/nm-vpnc-service.c
- (validate_one_property): allow the 'name' property
2008-04-27 Dan Williams <dcbw@redhat.com>
* properties/Makefile.am

View file

@ -114,6 +114,10 @@ validate_one_property (gpointer key, gpointer val, gpointer user_data)
if (*failed)
return;
/* 'name' is the setting name; always allowed but unused */
if (!strcmp ((char *) key, NM_SETTING_NAME))
return;
for (i = 0; valid_properties[i].name; i++) {
ValidProperty prop = valid_properties[i];