diff options
author | Martin Olsson <martin@minimum.se> | 2013-06-13 17:10:09 +0200 |
---|---|---|
committer | Daniel Mustieles <daniel.mustieles@gmail.com> | 2013-06-13 17:10:09 +0200 |
commit | 8b3f300761edbb1ef9fcf434ccc3150ca3a1eef9 (patch) | |
tree | 81c8cc502fc7a96fe863f00a1477a4329d94a086 | |
parent | 769e917fc0b330d5d19f93c050870f7bc6d5555a (diff) |
Fixed typo in string. Fixes bug #697502
-rw-r--r-- | daemon/control/gkd-control-client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/control/gkd-control-client.c b/daemon/control/gkd-control-client.c index 54e266e2..6d4ded30 100644 --- a/daemon/control/gkd-control-client.c +++ b/daemon/control/gkd-control-client.c @@ -49,7 +49,7 @@ control_connect (const gchar *path, /* First a bunch of checks to make sure nothing funny is going on */ if (lstat (path, &st) < 0) { if (!(flags & GKD_CONTROL_QUIET_IF_NO_PEER) || errno != ENOENT) - g_message ("couldn't access conrol socket: %s: %s", path, g_strerror (errno)); + g_message ("couldn't access control socket: %s: %s", path, g_strerror (errno)); return -1; } else if (st.st_uid != geteuid ()) { |