diff options
author | 2011-01-10 12:53:32 +0000 | |
---|---|---|
committer | 2011-01-10 12:53:32 +0000 | |
commit | 3a6ae92e3938f880618f653759639e2b1ae8cdca (patch) | |
tree | 4b616ff62f9a5e81867171b8c439d041b94255e4 | |
parent | Fix a bad heritage from ospfd. Make neighbors independent of interfaces. (diff) | |
download | wireguard-openbsd-3a6ae92e3938f880618f653759639e2b1ae8cdca.tar.xz wireguard-openbsd-3a6ae92e3938f880618f653759639e2b1ae8cdca.zip |
Remove 2 empty lines.
-rw-r--r-- | usr.sbin/iscsid/connection.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/iscsid/connection.c b/usr.sbin/iscsid/connection.c index 6b5fa772865..c70944903b8 100644 --- a/usr.sbin/iscsid/connection.c +++ b/usr.sbin/iscsid/connection.c @@ -1,4 +1,4 @@ -/* $OpenBSD: connection.c,v 1.6 2011/01/06 15:35:06 claudio Exp $ */ +/* $OpenBSD: connection.c,v 1.7 2011/01/10 12:53:32 claudio Exp $ */ /* * Copyright (c) 2009 Claudio Jeker <claudio@openbsd.org> @@ -92,8 +92,6 @@ conn_new(struct session *s, struct connection_config *cc) sizeof(nodelay)) == -1) log_warn("conn_new: setting TCP_NODELAY"); - - event_set(&c->ev, c->fd, EV_READ|EV_PERSIST, conn_dispatch, c); event_set(&c->wev, c->fd, EV_WRITE, conn_write_dispatch, c); event_add(&c->ev, NULL); |