diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2005-03-23 11:36:36 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2005-03-23 11:36:36 +0000 |
commit | 0f4c89f75ee6b53dcb06af62ea284de46fd15323 (patch) | |
tree | 3bff67e66da3167c307da32b7df67b6cef55d2bd /usr.sbin/bgpd | |
parent | c55f944b109603ae05ecdbf885400d9eb6a2b724 (diff) |
remove now osolete comment, from a mail exchange with
Alexander von Gernler <grunk@pestilenz.org>
Diffstat (limited to 'usr.sbin/bgpd')
-rw-r--r-- | usr.sbin/bgpd/buffer.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/usr.sbin/bgpd/buffer.c b/usr.sbin/bgpd/buffer.c index 86437d6a1ff..ff001618cda 100644 --- a/usr.sbin/bgpd/buffer.c +++ b/usr.sbin/bgpd/buffer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: buffer.c,v 1.28 2005/03/17 21:51:26 claudio Exp $ */ +/* $OpenBSD: buffer.c,v 1.29 2005/03/23 11:36:35 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -132,12 +132,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; @@ -210,12 +204,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; |