Subject: Re: more make build errors
To: Caffeinate The World <mochaexpress@yahoo.com>
From: Simon Burge <simonb@wasabisystems.com>
List: current-users
Date: 06/27/2001 13:41:42
Caffeinate The World wrote:
> i just did a sup and nothing turned up. checked the ftp site manually
> and didn't see either one with 1.3. both were 1.2.
> [ ... ]
> does the ftp server update right away?
Not straight away - it's either every 4, 6 or 24 hours. I've included
the diffs below.
Simon.
--
Simon Burge <simonb@wasabisystems.com>
NetBSD CDs, Support and Service: http://www.wasabisystems.com/
Index: print-icmp6.c
===================================================================
RCS file: /cvsroot/basesrc/dist/tcpdump/print-icmp6.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -d -p -u -r1.2 -r1.3
--- print-icmp6.c 2001/06/25 19:59:58 1.2
+++ print-icmp6.c 2001/06/27 02:46:25 1.3
@@ -1,4 +1,4 @@
-/* $NetBSD: print-icmp6.c,v 1.2 2001/06/25 19:59:58 itojun Exp $ */
+/* $NetBSD: print-icmp6.c,v 1.3 2001/06/27 02:46:25 simonb Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994
@@ -27,7 +27,7 @@
static const char rcsid[] =
"@(#) Header: /tcpdump/master/tcpdump/print-icmp6.c,v 1.55 2001/06/15 22:17:32 fenner Exp";
#else
-__RCSID("$NetBSD: print-icmp6.c,v 1.2 2001/06/25 19:59:58 itojun Exp $");
+__RCSID("$NetBSD: print-icmp6.c,v 1.3 2001/06/27 02:46:25 simonb Exp $");
#endif
#endif
@@ -50,6 +50,7 @@ __RCSID("$NetBSD: print-icmp6.c,v 1.2 20
#include <arpa/inet.h>
#include <stdio.h>
+#include <string.h>
#include <netdb.h>
#include "ip6.h"
Index: print-sctp.c
===================================================================
RCS file: /cvsroot/basesrc/dist/tcpdump/print-sctp.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -d -p -u -r1.2 -r1.3
--- print-sctp.c 2001/06/25 20:00:00 1.2
+++ print-sctp.c 2001/06/27 02:46:25 1.3
@@ -1,4 +1,4 @@
-/* $NetBSD: print-sctp.c,v 1.2 2001/06/25 20:00:00 itojun Exp $ */
+/* $NetBSD: print-sctp.c,v 1.3 2001/06/27 02:46:25 simonb Exp $ */
/* Copyright (c) 2001 NETLAB, Temple University
* Copyright (c) 2001 Protocol Engineering Lab, University of Delaware
@@ -41,7 +41,7 @@
static const char rcsid[] =
"@(#) Header: /tcpdump/master/tcpdump/print-sctp.c,v 1.3 2001/05/09 02:42:50 itojun Exp (NETLAB/PEL)";
#else
-__RCSID("$NetBSD: print-sctp.c,v 1.2 2001/06/25 20:00:00 itojun Exp $");
+__RCSID("$NetBSD: print-sctp.c,v 1.3 2001/06/27 02:46:25 simonb Exp $");
#endif
#endif
@@ -114,8 +114,8 @@ void sctp_print(const u_char *bp,
if (sctpPacketLength < sizeof(struct sctpHeader))
{
- (void)printf("truncated-sctp - %d bytes missing!",
- sctpPacketLength-sizeof(struct sctpHeader));
+ (void)printf("truncated-sctp - %ld bytes missing!",
+ (long)sctpPacketLength-sizeof(struct sctpHeader));
return;
}