mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-03 09:00:21 +00:00
Fix MAXLOGNAME usage, the code has wrong assumption that it must be
NULL terminated
This commit is contained in:
parent
431efa59e3
commit
6fa0fa0ec9
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=23300
@ -53,10 +53,10 @@
|
||||
#include <locale.h>
|
||||
#endif
|
||||
|
||||
#if (MAXLOGNAME-1) > UT_NAMESIZE
|
||||
#if MAXLOGNAME > UT_NAMESIZE
|
||||
#define LOGNAMESIZE UT_NAMESIZE
|
||||
#else
|
||||
#define LOGNAMESIZE (MAXLOGNAME-1)
|
||||
#define LOGNAMESIZE MAXLOGNAME
|
||||
#endif
|
||||
|
||||
/* Local headers */
|
||||
@ -92,7 +92,7 @@ enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */
|
||||
|
||||
/* File scope variables */
|
||||
|
||||
static char rcsid[] = "$Id$";
|
||||
static char rcsid[] = "$Id: at.c,v 1.10 1997/02/22 19:54:04 peter Exp $";
|
||||
char *no_export[] =
|
||||
{
|
||||
"TERM", "TERMCAP", "DISPLAY", "_"
|
||||
|
Loading…
Reference in New Issue
Block a user