Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2021-01-22 10:43:30 +0300
committerAntenore Gatta <antenore@simbiosi.org>2021-01-22 10:43:30 +0300
commitbac85366e31b7588be0720f0a8ba2985859dd22f (patch)
treec15aa15b8da90a48414c2458cc96e6666db92282 /plugins/secret
parentcc31dbceceaa353f95752486e0ba9765836cd601 (diff)
Using curly double quotes where possible
Diffstat (limited to 'plugins/secret')
-rw-r--r--plugins/secret/src/glibsecret_plugin.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/secret/src/glibsecret_plugin.c b/plugins/secret/src/glibsecret_plugin.c
index 2557384e8..5bd585762 100644
--- a/plugins/secret/src/glibsecret_plugin.c
+++ b/plugins/secret/src/glibsecret_plugin.c
@@ -110,9 +110,9 @@ void remmina_plugin_glibsecret_store_password(RemminaFile *remminafile, const gc
NULL, &r, "filename", path, "key", key, NULL);
g_free(s);
if (r == NULL) {
- REMMINA_PLUGIN_DEBUG("Password \"%s\" saved for file %s\n", key, path);
+ REMMINA_PLUGIN_DEBUG("Password “%s” saved for file %s\n", key, path);
}else {
- REMMINA_PLUGIN_DEBUG("Password \"%s\" cannot be saved for file %s\n", key, path);
+ REMMINA_PLUGIN_DEBUG("Password “%s” cannot be saved for file %s\n", key, path);
g_error_free(r);
}
}
@@ -147,9 +147,9 @@ void remmina_plugin_glibsecret_delete_password(RemminaFile *remminafile, const g
path = remmina_plugin_service->file_get_path(remminafile);
secret_password_clear_sync(&remmina_file_secret_schema, NULL, &r, "filename", path, "key", key, NULL);
if (r == NULL)
- REMMINA_PLUGIN_DEBUG("password \"%s\" deleted for file %s", key, path);
+ REMMINA_PLUGIN_DEBUG("password “%s” deleted for file %s", key, path);
else
- REMMINA_PLUGIN_DEBUG("password \"%s\" cannot be deleted for file %s", key, path);
+ REMMINA_PLUGIN_DEBUG("password “%s” cannot be deleted for file %s", key, path);
}
gboolean remmina_plugin_glibsecret_init()