Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-6]: src/usr.sbin/syslogd Pull up following revision(s) (requested...
details: https://anonhg.NetBSD.org/src/rev/6e5ccce2ea9b
branches: netbsd-6
changeset: 777256:6e5ccce2ea9b
user: snj <snj%NetBSD.org@localhost>
date: Fri Oct 13 07:57:51 2017 +0000
description:
Pull up following revision(s) (requested by ginsbach in ticket #1504):
usr.sbin/syslogd/syslogd.c: revision 1.124
Use looked up remote host for remote message without a hostname
An incoming remote message may not necessarily have a hostname
between the timestamp and the message. The the source of the remote
sender is already looked up so use that hostname/IP address rather
than the local hostname.
diffstat:
usr.sbin/syslogd/syslogd.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 984465f5dbd6 -r 6e5ccce2ea9b usr.sbin/syslogd/syslogd.c
--- a/usr.sbin/syslogd/syslogd.c Mon Sep 11 04:46:21 2017 +0000
+++ b/usr.sbin/syslogd/syslogd.c Fri Oct 13 07:57:51 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: syslogd.c,v 1.105.4.2 2017/08/31 15:10:29 martin Exp $ */
+/* $NetBSD: syslogd.c,v 1.105.4.3 2017/10/13 07:57:51 snj Exp $ */
/*
* Copyright (c) 1983, 1988, 1993, 1994
@@ -39,7 +39,7 @@
#if 0
static char sccsid[] = "@(#)syslogd.c 8.3 (Berkeley) 4/4/94";
#else
-__RCSID("$NetBSD: syslogd.c,v 1.105.4.2 2017/08/31 15:10:29 martin Exp $");
+__RCSID("$NetBSD: syslogd.c,v 1.105.4.3 2017/10/13 07:57:51 snj Exp $");
#endif
#endif /* not lint */
@@ -1272,7 +1272,7 @@
} else if (*p == '[' || (*p == ':'
&& (*(p+1) == ' ' || *(p+1) == '\0'))) {
/* no host in message */
- buffer->host = LocalFQDN;
+ buffer->host = strdup(hname);
buffer->prog = strndup(start, p - start);
break;
} else {
Home |
Main Index |
Thread Index |
Old Index