PERFORCE change 133813 for review
Robert Watson
rwatson at FreeBSD.org
Mon Jan 21 12:59:21 PST 2008
http://perforce.freebsd.org/chv.cgi?CH=133813
Change 133813 by rwatson at rwatson_freebsd_capabilities on 2008/01/21 20:58:39
Correct logic in getsock_cap() to check for a socket and return it
and file flags rather than check for a vnode. Copy-and-paste-o.
Affected files ...
.. //depot/projects/trustedbsd/capabilities/src/sys/kern/uipc_syscalls.c#3 edit
Differences ...
==== //depot/projects/trustedbsd/capabilities/src/sys/kern/uipc_syscalls.c#3 (text+ko) ====
@@ -184,12 +184,14 @@
}
}
#endif /* CAPABILITIES */
- if (fp->f_vnode == NULL) {
- error = EINVAL;
+ if (fp->f_type != DTYPE_SOCKET) {
+ error = ENOTSOCK;
fp = NULL;
goto out;
} else {
fhold(fp);
+ if (fflagp != NULL)
+ *fflagp = fp->f_flag;
error = 0;
}
out:
More information about the p4-projects
mailing list