summaryrefslogtreecommitdiff
path: root/include/protocols
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1996-04-09 20:40:32 +0000
committercgd <cgd@NetBSD.org>1996-04-09 20:40:32 +0000
commit8b65ecffc3962092cc80cea1ec70e00ef40b4011 (patch)
tree794df8d0f659a64ee66520623780530f328e5036 /include/protocols
parentf85f062d776ae947f7b3f2bbe707317595763f16 (diff)
time seconds/usec sent over the net are signed.
Diffstat (limited to 'include/protocols')
-rw-r--r--include/protocols/timed.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/protocols/timed.h b/include/protocols/timed.h
index deaa619d9fb..8a110bfbab3 100644
--- a/include/protocols/timed.h
+++ b/include/protocols/timed.h
@@ -1,4 +1,4 @@
-/* $NetBSD: timed.h,v 1.4 1996/04/06 01:53:29 cgd Exp $ */
+/* $NetBSD: timed.h,v 1.5 1996/04/09 20:40:32 cgd Exp $ */
/*
* Copyright (c) 1983 Regents of the University of California.
@@ -51,8 +51,8 @@ struct tsp {
u_int16_t tsp_seq;
union {
struct {
- u_int32_t tv_sec;
- u_int32_t tv_usec;
+ int32_t tv_sec;
+ int32_t tv_usec;
} tspu_time;
char tspu_hopcnt;
} tsp_u;