summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ripd/ripd.h
diff options
context:
space:
mode:
authorclaudio <claudio@openbsd.org>2007-10-24 20:16:49 +0000
committerclaudio <claudio@openbsd.org>2007-10-24 20:16:49 +0000
commit22b5355d46d54e80744286653b9a1b6c59642a16 (patch)
tree46a5bd78ac1bfd30590a1937b2cbdbe8f440aee1 /usr.sbin/ripd/ripd.h
parentadd missing checks against NULL after realloc calls (diff)
downloadwireguard-openbsd-22b5355d46d54e80744286653b9a1b6c59642a16.tar.xz
wireguard-openbsd-22b5355d46d54e80744286653b9a1b6c59642a16.zip
ctl_rt flags should be u_int16_t -- noticed by lint
Diffstat (limited to 'usr.sbin/ripd/ripd.h')
-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 {