mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 08:00:31 -04:00
no fault of Marcel's changes but rather poor style. Bruce gives a much longer version but I won't repeat that here. :)
18 lines
486 B
Text
18 lines
486 B
Text
--- rawio.c.orig Sat Jul 24 19:45:14 1999
|
|
+++ rawio.c Sat Nov 13 10:47:50 1999
|
|
@@ -493,10 +493,14 @@
|
|
void dochild (int test, int proc)
|
|
{
|
|
sigset_t allsigs;
|
|
- struct sigaction ignore = {sigcatch, allsigs, 0};
|
|
+ struct sigaction ignore;
|
|
int mycount;
|
|
int i;
|
|
int maxrecs;
|
|
+
|
|
+ ignore.sa_handler = sigcatch;
|
|
+ ignore.sa_flags = 0;
|
|
+ ignore.sa_mask = allsigs;
|
|
|
|
/* first, calculate the number of records to transfer.
|
|
* If we're one of the first <remainder> processes,
|