summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mustieles <daniel.mustieles@gmail.com>2012-10-28 19:44:52 +0100
committerDaniel Mustieles <daniel.mustieles@gmail.com>2012-10-28 19:44:52 +0100
commit0f2e987a1e15ec0355835ed1c7793abdc759f2af (patch)
tree080b666c7019f67759738fca1b739eeadae241d1
parentd531327a1e1097ddfb7a6bb22b36d5dd7a9e4c0f (diff)
downloadgdm-0f2e987a1e15ec0355835ed1c7793abdc759f2af.tar.gz
Fixed typo in strings. Fixes bug #684575
-rw-r--r--gui/simple-chooser/gdm-host-chooser-widget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/simple-chooser/gdm-host-chooser-widget.c b/gui/simple-chooser/gdm-host-chooser-widget.c
index 232c850e..f9200aa0 100644
--- a/gui/simple-chooser/gdm-host-chooser-widget.c
+++ b/gui/simple-chooser/gdm-host-chooser-widget.c
@@ -224,13 +224,13 @@ decode_packet (GIOChannel *source,
if G_UNLIKELY (header.version != XDM_PROTOCOL_VERSION &&
header.version != GDM_XDMCP_PROTOCOL_VERSION) {
- g_warning (_("XMDCP: Incorrect XDMCP version!"));
+ g_warning (_("XDMCP: Incorrect XDMCP version!"));
return TRUE;
}
address = gdm_address_new_from_sockaddr ((struct sockaddr *) &clnt_ss, ss_len);
if (address == NULL) {
- g_warning (_("XMDCP: Unable to parse address"));
+ g_warning (_("XDMCP: Unable to parse address"));
return TRUE;
}