bug fix: set fromlen to sizeof(from)
This commit is contained in:
parent
8214ac7d58
commit
179716e7b0
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: apmd.c,v 1.2 1996/09/13 01:10:15 jtk Exp $ */
|
/* $NetBSD: apmd.c,v 1.3 1996/09/17 00:46:31 jtk Exp $ */
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1995,1996 John T. Kohl. All rights reserved.
|
* Copyright (c) 1995,1996 John T. Kohl. All rights reserved.
|
||||||
*
|
*
|
||||||
|
@ -177,7 +177,7 @@ handle_client(int sock_fd, int ctl_fd)
|
||||||
/* accept a handle from the client, process it, then clean up */
|
/* accept a handle from the client, process it, then clean up */
|
||||||
int cli_fd;
|
int cli_fd;
|
||||||
struct sockaddr_un from;
|
struct sockaddr_un from;
|
||||||
int fromlen;
|
int fromlen = sizeof(from);
|
||||||
struct apm_command cmd;
|
struct apm_command cmd;
|
||||||
struct apm_reply reply;
|
struct apm_reply reply;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue