String paranoia. Merged from regular telnet.
This commit is contained in:
parent
517ed0bad5
commit
617a96fd6d
@ -361,7 +361,7 @@ fatal(f, msg)
|
||||
{
|
||||
char buf[BUFSIZ];
|
||||
|
||||
(void) sprintf(buf, "telnetd: %s.\r\n", msg);
|
||||
(void) snprintf(buf, sizeof(buf), "telnetd: %s.\r\n", msg);
|
||||
#ifdef ENCRYPTION
|
||||
if (encrypt_output) {
|
||||
/*
|
||||
@ -384,7 +384,7 @@ fatalperror(f, msg)
|
||||
{
|
||||
char buf[BUFSIZ], *strerror();
|
||||
|
||||
(void) sprintf(buf, "%s: %s", msg, strerror(errno));
|
||||
(void) snprintf(buf, sizeof(buf), "%s: %s", msg, strerror(errno));
|
||||
fatal(f, buf);
|
||||
}
|
||||
|
||||
|
@ -361,7 +361,7 @@ fatal(f, msg)
|
||||
{
|
||||
char buf[BUFSIZ];
|
||||
|
||||
(void) sprintf(buf, "telnetd: %s.\r\n", msg);
|
||||
(void) snprintf(buf, sizeof(buf), "telnetd: %s.\r\n", msg);
|
||||
#ifdef ENCRYPTION
|
||||
if (encrypt_output) {
|
||||
/*
|
||||
@ -384,7 +384,7 @@ fatalperror(f, msg)
|
||||
{
|
||||
char buf[BUFSIZ], *strerror();
|
||||
|
||||
(void) sprintf(buf, "%s: %s", msg, strerror(errno));
|
||||
(void) snprintf(buf, sizeof(buf), "%s: %s", msg, strerror(errno));
|
||||
fatal(f, buf);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user