[prev in list] [next in list] [prev in thread] [next in thread] 

List:       util-linux-ng
Subject:    [PATCH] logger: shadow declaration
From:       Sami Kerola <kerolasa () iki ! fi>
Date:       2015-10-31 12:27:36
Message-ID: 1446294456-1846-1-git-send-email-kerolasa () iki ! fi
[Download RAW message or body]

misc-utils/logger.c:448:17: warning: declaration of 'msg' shadows a
				parameter [-Wshadow]
misc-utils/logger.c:429:74: note: shadowed declaration is here

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
---
 misc-utils/logger.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/misc-utils/logger.c b/misc-utils/logger.c
index eda160a..e439266 100644
--- a/misc-utils/logger.c
+++ b/misc-utils/logger.c
@@ -445,7 +445,7 @@ static void write_output(const struct logger_ctl *ctl, const char *const msg)
 	iovec_add_string(iov, iovlen, msg, 0);
 
 	if (!ctl->noact) {
-		struct msghdr msg = { 0 };
+		struct msghdr message = { 0 };
 		struct cmsghdr *cmhp;
 		struct ucred *cred;
 		union {
@@ -457,8 +457,8 @@ static void write_output(const struct logger_ctl *ctl, const char *const msg)
 		if ((ctl->socket_type == TYPE_TCP) && !ctl->octet_count)
 			iovec_add_string(iov, iovlen, "\n", 1);
 
-		msg.msg_iov = iov;
-		msg.msg_iovlen = iovlen;
+		message.msg_iov = iov;
+		message.msg_iovlen = iovlen;
 
 		/* syslog/journald may follow local socket credentials rather
 		 * than in the message PID. If we use --id as root than we can
@@ -468,10 +468,10 @@ static void write_output(const struct logger_ctl *ctl, const char *const msg)
 		if (ctl->pid && !ctl->server && ctl->pid != getpid()
 		    && geteuid() == 0 && kill(ctl->pid, 0) == 0) {
 
-			msg.msg_control = cbuf.control;
-			msg.msg_controllen = CMSG_SPACE(sizeof(struct ucred));
+			message.msg_control = cbuf.control;
+			message.msg_controllen = CMSG_SPACE(sizeof(struct ucred));
 
-			cmhp = CMSG_FIRSTHDR(&msg);
+			cmhp = CMSG_FIRSTHDR(&message);
 			cmhp->cmsg_len = CMSG_LEN(sizeof(struct ucred));
 			cmhp->cmsg_level = SOL_SOCKET;
 			cmhp->cmsg_type = SCM_CREDENTIALS;
@@ -480,7 +480,7 @@ static void write_output(const struct logger_ctl *ctl, const char *const msg)
 			cred->pid = ctl->pid;
 		}
 
-		if (sendmsg(ctl->fd, &msg, 0) < 0)
+		if (sendmsg(ctl->fd, &message, 0) < 0)
 			warn(_("send message failed"));
 	}
 
-- 
2.6.2

--
To unsubscribe from this list: send the line "unsubscribe util-linux" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic