Fix the code fragment clobbered in my last commit.

This commit is contained in:
Seigo Tanimura 2002-04-27 09:33:49 +00:00
parent d48d4b2501
commit acbbcc5f1d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=95553
2 changed files with 4 additions and 0 deletions

View file

@ -268,6 +268,8 @@ sonewconn(head, connstatus)
SIGIO_SLOCK();
sorwakeup_locked(head);
SIGIO_SUNLOCK();
wakeup((caddr_t)&head->so_timeo);
so->so_state |= connstatus;
}
return (so);
}

View file

@ -268,6 +268,8 @@ sonewconn(head, connstatus)
SIGIO_SLOCK();
sorwakeup_locked(head);
SIGIO_SUNLOCK();
wakeup((caddr_t)&head->so_timeo);
so->so_state |= connstatus;
}
return (so);
}