Fix uninitialized variable.
This commit is contained in:
parent
8acf01858e
commit
02b0255ae0
|
@ -27,7 +27,7 @@
|
|||
*/
|
||||
|
||||
#ifndef lint
|
||||
static char rcsid[] = "$Id: rusersd.c,v 1.5 1993/11/21 18:56:36 brezak Exp $";
|
||||
static char rcsid[] = "$Id: rusersd.c,v 1.6 1994/07/11 21:51:58 mycroft Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <stdio.h>
|
||||
|
@ -57,7 +57,7 @@ main(argc, argv)
|
|||
int sock = 0;
|
||||
int proto = 0;
|
||||
struct sockaddr_in from;
|
||||
int fromlen;
|
||||
int fromlen = sizeof(from);
|
||||
|
||||
/*
|
||||
* See if inetd started us
|
||||
|
|
Loading…
Reference in New Issue