+ Password is also needed for new X.509 + User/Pass connection type

Tim


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1123 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Tim Niemueller 2005-12-05 22:34:18 +00:00
parent 415d12937e
commit 7899ecc6b3

View file

@ -262,7 +262,8 @@ main (int argc, char *argv[])
i = g_slist_next (i);
if (i != NULL) {
const char *string2 = gconf_value_get_string ((GConfValue *)i->data);
if ( strcmp (string2, "password") == 0 ) {
if ( (strcmp (string2, "password") == 0) ||
(strcmp (string2, "x509userpass") == 0) ) {
needs_password = TRUE;
}
}