From 70c6b489df419e8a92e05aa3a116e284fc3c6aab Mon Sep 17 00:00:00 2001 From: Sunil Nimmagadda Date: Sat, 19 Apr 2014 19:07:01 +0500 Subject: args are checked for size in parse function. Cast to void as no truncation check required here. --- session.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'session.c') diff --git a/session.c b/session.c index aa5d583..1914d51 100644 --- a/session.c +++ b/session.c @@ -290,7 +290,7 @@ auth_command(struct session *s, int cmd, char *args) capa(s); break; case CMD_USER: - strlcpy(s->user, args, sizeof(s->user)); + (void)strlcpy(s->user, args, sizeof(s->user)); session_reply(s, "%s", "+OK"); break; case CMD_PASS: @@ -298,7 +298,7 @@ auth_command(struct session *s, int cmd, char *args) session_reply(s, "%s", "-ERR no USER specified"); break; } - strlcpy(s->pass, args, sizeof(s->pass)); + (void)strlcpy(s->pass, args, sizeof(s->pass)); auth_request(s); return; case CMD_QUIT: -- cgit v1.2.3