Subject: To where do I forward patch for ethers.c?
To: None <current-users@netbsd.org>
From: M L Riechers <mlr@rse.com>
List: current-users
Date: 03/14/2001 17:50:52
When we upgraded v162 to NetBSD-release-1-4 (26 February 2001,
NetBSD 1.4.3A), we ran into a problem with rarpd: it could no longer
find a valid entry in the /etc/ethers file for reverse translation.
We traced it down to a problem in the src/lib/libc/net/ethers.c file,
which the following patch fixes.
--- src/lib/libc/net/ethers.c.orig Sat Oct 21 13:42:14 2000
+++ src/lib/libc/net/ethers.c Wed Mar 14 17:31:54 2001
@@ -1,4 +1,4 @@
-/* $NetBSD: ethers.c,v 1.14.2.1 2000/10/19 18:34:33 he Exp $ */
+/* $NetBSD: ethers.c,v 1.14.2.1-next 2000/10/19 18:34:33 Riechers Exp $ */
/*
* ethers(3N) a la Sun.
@@ -187,7 +187,7 @@
#define S2(arg) #arg
#define S1(arg) S2(arg)
- const static char fmt[] = " %x:%x:%x:%x:%sx:%x"
+ const static char fmt[] = " %x:%x:%x:%x:%x:%x"
" %" S1(MAXHOSTNAMELEN) "s\n";
#undef S2
#undef S1
What should I do with it?
-Mike