Fix building on old glib

This commit is contained in:
Patrick Griffis 2016-03-28 01:35:40 -04:00
parent bcb4eec754
commit dd080fa6f3
1 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ identd_read_ready (GDataInputStream *in_stream, GAsyncResult *res, ident_info *i
if (!local || !remote || local > G_MAXUINT16 || remote > G_MAXUINT16) if (!local || !remote || local > G_MAXUINT16 || remote > G_MAXUINT16)
{ {
g_strlcat (buf, "ERROR : INVALID-PORT\r\n", sizeof (buf)); g_strlcat (buf, "ERROR : INVALID-PORT\r\n", sizeof (buf));
g_info ("Identd: Recieved invalid port"); g_debug ("Identd: Recieved invalid port");
} }
else else
{ {
@ -154,7 +154,7 @@ identd_read_ready (GDataInputStream *in_stream, GAsyncResult *res, ident_info *i
if (!info->username) if (!info->username)
{ {
g_strlcat (buf, "ERROR : NO-USER\r\n", sizeof (buf)); g_strlcat (buf, "ERROR : NO-USER\r\n", sizeof (buf));
g_info ("Identd: Recieved invalid local port"); g_debug ("Identd: Recieved invalid local port");
} }
else else
{ {