Actions
Bug #6107
closedport_notify_t prefix mispelt in port_associate(3C)
Start date:
2015-08-09
Due date:
% Done:
100%
Estimated time:
Difficulty:
Bite-size
Tags:
Gerrit CR:
Description
The port_associate(3C)
manual page currently suggests that:
The port_notify_t structure contains the following members: int portntfy_port; /* bind request(s) to port */ void *portntfy_user; /* user defined cookie */
Looking at the header file, uts/common/sys/port.h
, one finds the following definition:
typedef struct port_notify { int portnfy_port; /* bind request(s) to port */ void *portnfy_user; /* user defined */ } port_notify_t;
(Note the mispelt struct
member prefix.)
Updated by Electric Monk almost 7 years ago
- Status changed from New to Closed
- % Done changed from 90 to 100
git commit 50a3c7725241be42cd7a99ff5cfcda2b8a0450e0
commit 50a3c7725241be42cd7a99ff5cfcda2b8a0450e0 Author: Joshua M. Clulow <josh@sysmgr.org> Date: 2015-08-09T16:06:33.000Z 6107 port_notify_t prefix mispelt in port_associate(3C) Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Approved by: Robert Mustacchi <rm@joyent.com>
Actions