diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-04-09 15:12:06 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-04-09 15:12:06 (GMT) |
commit | 865be356c53afc3bdeae21c640bf0c3d5433fc4b (patch) | |
tree | 1204a61960a417b6964b4aef245576e0f790ac20 /src/glibext | |
parent | 9b7dfd449b08637c4b4fc6d95acf3a8fcb5fd58d (diff) |
Created user public and private RSA keys if needed.
Diffstat (limited to 'src/glibext')
-rw-r--r-- | src/glibext/configuration.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/glibext/configuration.c b/src/glibext/configuration.c index 069dbc3..d8547a6 100644 --- a/src/glibext/configuration.c +++ b/src/glibext/configuration.c @@ -1287,14 +1287,10 @@ bool g_generic_config_read(GGenConfig *config) bool g_generic_config_write(GGenConfig *config) { bool result; /* Bilan à retourner */ - int ret; /* Bilan de l'assurance */ xmlDocPtr xdoc; /* Document XML de configurat° */ xmlXPathContextPtr context; /* Contexte de recherche XPath */ GList *iter; /* Boucle de parcours */ - ret = ensure_path_exists(config->filename); - if (ret != 0) return false; - if (!create_new_xml_file(&xdoc, &context)) return false; |