Files
shadow/lib/ttytype.c
Alejandro Colomar 964df6ed6e lib/, src/: Use strchrnul(3) instead of its pattern
In the files where #include <string.h> is missing, add it, and sort the
includes.

Signed-off-by: Alejandro Colomar <alx@kernel.org>
2024-07-01 21:40:11 -05:00

66 lines
1.2 KiB
C

/*
* SPDX-FileCopyrightText: 1989 - 1994, Julianne Frances Haugh
* SPDX-FileCopyrightText: 1996 - 1997, Marek Michałkiewicz
* SPDX-FileCopyrightText: 2003 - 2005, Tomasz Kłoczko
* SPDX-FileCopyrightText: 2008 - 2010, Nicolas François
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <config.h>
#ident "$Id$"
#include <stdio.h>
#include <string.h>
#include "defines.h"
#include "getdef.h"
#include "prototypes.h"
/*
* ttytype - set ttytype from port to terminal type mapping database
*/
void ttytype (const char *line)
{
FILE *fp;
char buf[BUFSIZ];
const char *typefile;
char type[1024] = "";
char port[1024];
if (getenv ("TERM") != NULL) {
return;
}
typefile = getdef_str ("TTYTYPE_FILE");
if (NULL == typefile) {
return;
}
fp = fopen (typefile, "r");
if (NULL == fp) {
if (errno != ENOENT)
perror (typefile);
return;
}
while (fgets (buf, sizeof buf, fp) == buf) {
if (buf[0] == '#') {
continue;
}
*strchrnul(buf, '\n') = '\0';
if ( (sscanf (buf, "%1023s %1023s", type, port) == 2)
&& (strcmp (line, port) == 0)) {
break;
}
}
if ((feof (fp) == 0) && (ferror (fp) == 0) && (type[0] != '\0')) {
addenv ("TERM", type);
}
(void) fclose (fp);
}