summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2016-03-28 01:35:40 -0400
committerPatrick Griffis <tingping@tingping.se>2016-03-28 01:36:02 -0400
commitdd080fa6f37009a1739192ef154038ff82f77cb4 (patch)
tree31a9af54eff1a9dcec71d75b042b4a6e7bfad2b6 /src
parentbcb4eec75471ab8a84331f8ada8683544e08f592 (diff)
Fix building on old glib
Diffstat (limited to 'src')
-rw-r--r--src/common/plugin-identd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/plugin-identd.c b/src/common/plugin-identd.c
index b3e2b062..2eb852e0 100644
--- a/src/common/plugin-identd.c
+++ b/src/common/plugin-identd.c
@@ -146,7 +146,7 @@ identd_read_ready (GDataInputStream *in_stream, GAsyncResult *res, ident_info *i
 		if (!local || !remote || local > G_MAXUINT16 || remote > G_MAXUINT16)
 		{
 			g_strlcat (buf, "ERROR : INVALID-PORT\r\n", sizeof (buf));
-			g_info ("Identd: Recieved invalid port");
+			g_debug ("Identd: Recieved invalid port");
 		}
 		else
 		{
@@ -154,7 +154,7 @@ identd_read_ready (GDataInputStream *in_stream, GAsyncResult *res, ident_info *i
 			if (!info->username)
 			{
 				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
 			{