diff options
author | James Booth <boothj5@gmail.com> | 2016-08-28 17:30:15 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-08-28 17:30:15 +0100 |
commit | 6a18dedca8947ea9faa25940ce990268f2661c0a (patch) | |
tree | 4e2585d1e904ca97fa760d28893116880f7ad721 /src/xmpp | |
parent | fca59a3110046bc145e5b44dd6b63840c48b5083 (diff) | |
download | profani-tty-6a18dedca8947ea9faa25940ce990268f2661c0a.tar.gz |
Fixed typos
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/iq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c index 260c062e..f5e1657c 100644 --- a/src/xmpp/iq.c +++ b/src/xmpp/iq.c @@ -264,8 +264,8 @@ iq_autoping_check(void) unsigned long seconds_elapsed = elapsed * 1.0; gint timeout = prefs_get_autoping_timeout(); if (timeout > 0 && seconds_elapsed >= timeout) { - cons_show("Autoping response timed out afer %u seconds.", timeout); - log_debug("Autoping check: timed out afer %u seconds, disconnecting", timeout); + cons_show("Autoping response timed out after %u seconds.", timeout); + log_debug("Autoping check: timed out after %u seconds, disconnecting", timeout); session_autoping_fail(); autoping_wait = FALSE; g_timer_destroy(autoping_time); |