From 4ba539fdc01c09ff7b5a33f355e2d8f63b0b1bef Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Sun, 21 Apr 1996 23:38:17 +0000 Subject: [PATCH] sync to netbsd 960418 --- src/include/protocols/timed.h | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/include/protocols/timed.h b/src/include/protocols/timed.h index 427adffe..a8930f53 100644 --- a/src/include/protocols/timed.h +++ b/src/include/protocols/timed.h @@ -1,4 +1,5 @@ -/* $NetBSD: timed.h,v 1.3 1994/10/26 00:56:53 cgd Exp $ */ +/* $OpenBSD: timed.h,v 1.2 1996/04/21 23:38:17 deraadt Exp $ */ +/* $NetBSD: timed.h,v 1.5 1996/04/09 20:40:32 cgd Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. @@ -46,11 +47,14 @@ #define ANYADDR NULL struct tsp { - u_char tsp_type; - u_char tsp_vers; - u_short tsp_seq; + u_int8_t tsp_type; + u_int8_t tsp_vers; + u_int16_t tsp_seq; union { - struct timeval tspu_time; + struct { + int32_t tv_sec; + int32_t tv_usec; + } tspu_time; char tspu_hopcnt; } tsp_u; char tsp_name[MAXHOSTNAMELEN];