Added -Wall to CFLAGS, cleaned up (all avoidable) warnings.
This commit is contained in:
parent
8424a449b5
commit
bf6ca936d9
@ -3,7 +3,7 @@
|
||||
LIB= util
|
||||
SHLIB_MAJOR= 2
|
||||
SHLIB_MINOR= 2
|
||||
CFLAGS+=-DLIBC_SCCS -I${.CURDIR} -I/sys
|
||||
CFLAGS+=-Wall -DLIBC_SCCS -I${.CURDIR} -I/sys
|
||||
SRCS= login.c login_tty.c logout.c logwtmp.c pty.c setproctitle.c \
|
||||
login_cap.c login_class.c login_auth.c login_times.c login_ok.c
|
||||
MAN3+= login.3 login_tty.3 logout.3 logwtmp.3 pty.3 setproctitle.3 \
|
||||
|
@ -75,7 +75,6 @@ static void
|
||||
free_auth_info(void)
|
||||
{
|
||||
int i;
|
||||
char *ptr;
|
||||
|
||||
auth_info.reject = 0;
|
||||
auth_info.auths = 0;
|
||||
@ -285,6 +284,7 @@ auth_env(void)
|
||||
}
|
||||
setenv(nam, ptr, 1);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@ -327,6 +327,7 @@ auth_rmfiles(void)
|
||||
free(auth_info.files[i]);
|
||||
auth_info.files[i] = NULL;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user