summaryrefslogtreecommitdiff
path: root/usr.sbin/ripd
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2007-10-24 20:16:50 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2007-10-24 20:16:50 +0000
commitfcc051bda8caa3cd777f21fd7fd47e47b27f4dad (patch)
tree26e0754f605a7822113e8f37b54c1899796631c0 /usr.sbin/ripd
parent72cb6bbc56a0543e6f32a45597ab4abcca683082 (diff)
ctl_rt flags should be u_int16_t -- noticed by lint
Diffstat (limited to 'usr.sbin/ripd')
-rw-r--r--usr.sbin/ripd/ripd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ripd/ripd.h b/usr.sbin/ripd/ripd.h
index 2aee1756c23..5dcf57a965b 100644
--- a/usr.sbin/ripd/ripd.h
+++ b/usr.sbin/ripd/ripd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ripd.h,v 1.9 2007/10/18 17:00:59 deraadt Exp $ */
+/* $OpenBSD: ripd.h,v 1.10 2007/10/24 20:16:49 claudio Exp $ */
/*
* Copyright (c) 2004 Esben Norby <norby@openbsd.org>
@@ -332,7 +332,7 @@ struct ctl_rt {
time_t uptime;
time_t expire;
u_int32_t metric;
- u_int8_t flags;
+ u_int16_t flags;
};
struct ctl_nbr {