diff options
author | ben <ben@FreeBSD.org> | 2000-07-11 11:39:57 +0000 |
---|---|---|
committer | ben <ben@FreeBSD.org> | 2000-07-11 11:39:57 +0000 |
commit | d6f0a22ddfe7574229f162994b06b360834f062a (patch) | |
tree | 4b2df567ae38af3ff7390474be30d30974808e68 /lib/libc | |
parent | d9df5f65ded850e301b67e1b8f444f3df7aeddbe (diff) | |
download | FreeBSD-src-d6f0a22ddfe7574229f162994b06b360834f062a.zip FreeBSD-src-d6f0a22ddfe7574229f162994b06b360834f062a.tar.gz |
Fix typo; sa_siginfo -> sa_sigaction
PR: 19602
Submitted by: Tony Finch <dot@dotat.at>
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/sys/sigaction.2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/sys/sigaction.2 b/lib/libc/sys/sigaction.2 index 1802c23..641f543 100644 --- a/lib/libc/sys/sigaction.2 +++ b/lib/libc/sys/sigaction.2 @@ -445,7 +445,7 @@ void handler(int, siginfo_t *info, void *context); The handler function should match the SA_SIGINFO prototype if the SA_SIGINFO bit is set in flags. It then should be pointed to by the -.Dv sa_siginfo +.Dv sa_sigaction member of .Dv struct sigaction . Note that you should not assign SIG_DFL or SIG_IGN this way. |