diff options
Diffstat (limited to 'net/netatalk/patches/patch-ac')
-rw-r--r-- | net/netatalk/patches/patch-ac | 39 |
1 files changed, 34 insertions, 5 deletions
diff --git a/net/netatalk/patches/patch-ac b/net/netatalk/patches/patch-ac index 3e80058dfc7..e33f31c19ad 100644 --- a/net/netatalk/patches/patch-ac +++ b/net/netatalk/patches/patch-ac @@ -1,9 +1,38 @@ -$NetBSD: patch-ac,v 1.6 2002/09/30 09:25:24 abs Exp $ +The original commit message for this patch: ---- etc/atalkd/main.c.orig Wed Mar 13 20:50:26 2002 + http://mail-index.netbsd.org/source-changes/1999/09/17/0023.html + + Patch from Juergen Hannken-Illjes, which should solve PR#8308 (net 0 is + reserved for lo0, it can't be used on other interfaces). + +Here is PR #8308: + + http://www.NetBSD.org/cgi-bin/query-pr-single.pl?number=8308 + +and also the change that exposed the bug: + + http://mail-index.netbsd.org/source-changes/1999/08/24/0035.html + +and finally, the discussion referred to in the above change: + + http://mail-index.netbsd.org/tech-net/1999/06/30/0002.html + http://mail-index.netbsd.org/tech-net/1999/07/01/0005.html + http://mail-index.netbsd.org/tech-net/1999/07/01/0007.html + http://mail-index.netbsd.org/tech-net/1999/07/02/0003.html + http://mail-index.netbsd.org/tech-net/1999/07/02/0016.html + http://mail-index.netbsd.org/tech-net/1999/07/02/0017.html + http://mail-index.netbsd.org/tech-net/1999/07/02/0018.html + http://mail-index.netbsd.org/tech-net/1999/07/02/0020.html + http://mail-index.netbsd.org/tech-net/1999/07/02/0022.html + http://mail-index.netbsd.org/tech-net/1999/07/03/0004.html + + +$NetBSD: patch-ac,v 1.7 2003/02/15 20:01:07 fredb Exp $ + +--- etc/atalkd/main.c.orig Sat Oct 5 08:20:13 2002 +++ etc/atalkd/main.c -@@ -274,12 +274,12 @@ void as_timer(void) - syslog( LOG_INFO, "config for no router" ); +@@ -278,12 +278,12 @@ static void as_timer(int sig) + LOG(log_info, logtype_atalkd, "config for no router" ); if ( iface->i_flags & IFACE_PHASE2 ) { - iface->i_rt->rt_firstnet = 0; @@ -16,4 +45,4 @@ $NetBSD: patch-ac,v 1.6 2002/09/30 09:25:24 abs Exp $ + htons(1), htons( STARTUP_LASTNET )); } if ( looproute( iface, RTMP_ADD ) ) { /* -1 or 1 */ - syslog( LOG_ERR, + LOG(log_error, logtype_atalkd, |