More accurate debug log message for qAZ

This commit is contained in:
Heikki Hannikainen 2016-07-26 16:15:31 +03:00
parent 40792594f8
commit 980c15493d
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ static int q_dropcheck( struct client_t *c, const char *pdata, char *new_q, int
*/
if (q_type == 'Z') {
/* TODO: The reject log should really log the offending packet */
hlog(LOG_DEBUG, "q: dropping for unknown Q construct %c%c", q_proto, q_type);
/* qAZ is for packets from client to server, to prevent redistribution */
hlog(LOG_DEBUG, "q: dropping due q_type %c%c", q_proto, q_type);
return INERR_Q_QAZ; /* drop the packet */
}