blob: 01beff418618b102786bb6a91b1fc072f714531f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- a/libs/tcpd/starttls.c 2024-11-26 08:53:04.567473386 +0100
+++ b/libs/tcpd/starttls.c 2024-11-26 08:53:25.764198066 +0100
@@ -522,8 +522,9 @@
return (1);
}
-static void child_handler()
+static void child_handler(int signum)
{
+ (void)signum;
alarm(10);
}
--- a/libs/tcpd/tcpd.c 2024-11-26 08:54:56.315021691 +0100
+++ b/libs/tcpd/tcpd.c 2024-11-26 08:55:12.192818500 +0100
@@ -1590,7 +1590,7 @@
if (p == 0)
{
- wait_restore(childsig);
+ wait_restore();
if (accesslocal) /* Lookup local interface address too? */
{
|