mirror of
https://git.openafs.org/openafs.git
synced 2025-01-22 17:00:15 +00:00
FBSD: typo fix
Gerrit/5572 added conditionals on __FreeBSD_version >= 900044, which is (approximately) when a bunch of kernel API renames happened. (There has since been a dedicated version bump to 900045 a month or two post-facto, but 900044 should be fine for now.) However, 900044 is not 90004. Change-Id: I566186a7b53fd3b605a0f531e241eaf54a96bba3 Reviewed-on: http://gerrit.openafs.org/5657 Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com> Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
This commit is contained in:
parent
1b32b4800b
commit
ca8ba7e7a4
@ -92,7 +92,7 @@ osi_StopListener(void)
|
|||||||
p = pfind(rxk_ListenerPid);
|
p = pfind(rxk_ListenerPid);
|
||||||
if (p) {
|
if (p) {
|
||||||
afs_warn("osi_StopListener: rxk_ListenerPid %u\n", rxk_ListenerPid);
|
afs_warn("osi_StopListener: rxk_ListenerPid %u\n", rxk_ListenerPid);
|
||||||
#if (__FreeBSD_version >= 90004)
|
#if (__FreeBSD_version >= 900044)
|
||||||
kern_psignal(p, SIGUSR1);
|
kern_psignal(p, SIGUSR1);
|
||||||
#else
|
#else
|
||||||
psignal(p, SIGUSR1);
|
psignal(p, SIGUSR1);
|
||||||
|
Loading…
Reference in New Issue
Block a user