summaryrefslogtreecommitdiff
path: root/usr.sbin/ospfd/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/ospfd/buffer.c')
-rw-r--r--usr.sbin/ospfd/buffer.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/usr.sbin/ospfd/buffer.c b/usr.sbin/ospfd/buffer.c
index 41693565a10..eea84a5cdf0 100644
--- a/usr.sbin/ospfd/buffer.c
+++ b/usr.sbin/ospfd/buffer.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: buffer.c,v 1.3 2005/02/09 14:39:56 claudio Exp $ */
+/* $OpenBSD: buffer.c,v 1.4 2005/03/23 11:36:34 henning Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -180,12 +180,6 @@ msgbuf_clear(struct msgbuf *msgbuf)
int
msgbuf_write(struct msgbuf *msgbuf)
{
- /*
- * possible race here
- * when we cannot write out data completely from a buffer,
- * we MUST return and NOT try to write out stuff from later buffers -
- * the socket might have become writeable again
- */
struct iovec iov[IOV_MAX];
struct buf *buf, *next;
int i = 0;
@@ -249,12 +243,6 @@ msgbuf_write(struct msgbuf *msgbuf)
int
msgbuf_writebound(struct msgbuf *msgbuf)
{
- /*
- * possible race here
- * when we cannot write out data completely from a buffer,
- * we MUST return and NOT try to write out stuff from later buffers -
- * the socket might have become writeable again
- */
struct buf *buf;
int n;