summary refs log tree commit diff stats
path: root/src/common/ctcp.c
diff options
context:
space:
mode:
authorDiogo Sousa <diogogsousa@gmail.com>2013-06-23 19:53:41 +0100
committerDiogo Sousa <diogogsousa@gmail.com>2013-06-28 16:07:42 +0100
commitce6fef3d0ab8b70a88eaf83decb5a596a7f0e246 (patch)
tree0a7fa2e8f3f3af39802c5900c00856e96a30e7fb /src/common/ctcp.c
parent4057b7dd5852575a415cca8f465b4d419dcbdf9d (diff)
A few messages missing regarding server-time.
Diffstat (limited to 'src/common/ctcp.c')
-rw-r--r--src/common/ctcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/ctcp.c b/src/common/ctcp.c
index 7045c08a..b4fb55b7 100644
--- a/src/common/ctcp.c
+++ b/src/common/ctcp.c
@@ -104,7 +104,7 @@ ctcp_handle (session *sess, char *to, char *nick, char *ip,
 		if (!ctcp_check (sess, nick, word, word_eol, word[4] + ctcp_offset))
 		{
 			if (!ignore_check (word[1], IG_DCC))
-				handle_dcc (sess, nick, word, word_eol);
+				handle_dcc (sess, nick, word, word_eol, tags_data);
 		}
 		return;
 	}
@@ -129,7 +129,7 @@ ctcp_handle (session *sess, char *to, char *nick, char *ip,
 		if (ctcp_check (sess, nick, word, word_eol, word[4] + ctcp_offset))
 			goto generic;
 
-		inbound_action (sess, to, nick, ip, msg + 7, FALSE, id);
+		inbound_action (sess, to, nick, ip, msg + 7, FALSE, id, tags_data);
 		return;
 	}