summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2017-05-05 10:49:00 +0200
committerStef Walter <stefw@redhat.com>2017-05-08 13:05:57 +0200
commit99a2e6ad3e5e1fa5ffaff9967cc9dd4177199cd5 (patch)
tree56aad7ec44b119746ef633c424d2739e37c320e7 /tool
parentd47a5f624913029e512b5011d8c79a9fd696ac2a (diff)
downloadlibsecret-99a2e6ad3e5e1fa5ffaff9967cc9dd4177199cd5.tar.gz
tool: Fix typos in error messages
s/specfy/specify/ https://bugzilla.gnome.org/show_bug.cgi?id=782206
Diffstat (limited to 'tool')
-rw-r--r--tool/secret-tool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/secret-tool.c b/tool/secret-tool.c
index 14ce14b..770a833 100644
--- a/tool/secret-tool.c
+++ b/tool/secret-tool.c
@@ -97,7 +97,7 @@ attributes_from_arguments (gchar **args)
GHashTable *attributes;
if (args == NULL || args[0] == NULL) {
- g_printerr ("%s: must specfy attribute and value pairs\n", g_get_prgname ());
+ g_printerr ("%s: must specify attribute and value pairs\n", g_get_prgname ());
usage ();
}
@@ -105,7 +105,7 @@ attributes_from_arguments (gchar **args)
while (args[0] != NULL) {
if (args[1] == NULL) {
- g_printerr ("%s: must specfy attributes and values in pairs\n", g_get_prgname ());
+ g_printerr ("%s: must specify attributes and values in pairs\n", g_get_prgname ());
usage ();
}