summaryrefslogtreecommitdiff
path: root/usr.sbin/ospfd/ospfd.h
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2005-04-27 11:27:29 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2005-04-27 11:27:29 +0000
commit3843317595251f10c80a2861c2d79f7d3981e608 (patch)
tree9dc88d0663747debbeff946d500776d789668917 /usr.sbin/ospfd/ospfd.h
parent17f6aed748108d3abd268f72f04b34c30d3f2875 (diff)
Sort struct msgbuf by size. From Alexander von Gernler via henning@
Diffstat (limited to 'usr.sbin/ospfd/ospfd.h')
-rw-r--r--usr.sbin/ospfd/ospfd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/ospfd.h b/usr.sbin/ospfd/ospfd.h
index be45a1e3889..06eb2b6fbc5 100644
--- a/usr.sbin/ospfd/ospfd.h
+++ b/usr.sbin/ospfd/ospfd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ospfd.h,v 1.26 2005/04/12 09:54:59 claudio Exp $ */
+/* $OpenBSD: ospfd.h,v 1.27 2005/04/27 11:27:28 claudio Exp $ */
/*
* Copyright (c) 2004 Esben Norby <norby@openbsd.org>
@@ -69,9 +69,9 @@ struct buf {
};
struct msgbuf {
+ TAILQ_HEAD(, buf) bufs;
u_int32_t queued;
int fd;
- TAILQ_HEAD(, buf) bufs;
};
#define IMSG_HEADER_SIZE sizeof(struct imsg_hdr)