mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-02 12:20:51 +00:00
Old stuff laying around: Don't use a function called getstr(), that has
nasty consequences when the system curses is ncurses as this conflicts with a ncurses funciton and causes recursion.
This commit is contained in:
parent
3f0340f838
commit
3cc1b1bf9c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=41857
@ -58,7 +58,7 @@ char *cp, *name;
|
||||
#ifndef SOLARIS
|
||||
/*ARGSUSED*/
|
||||
char *
|
||||
getstr(id, cpp)
|
||||
Getstr(id, cpp)
|
||||
char *id, **cpp;
|
||||
{
|
||||
# ifdef HAS_CGETENT
|
||||
|
@ -42,7 +42,7 @@ static const char copyright[] =
|
||||
static char sccsid[] = "@(#)telnetd.c 8.2 (Berkeley) 12/15/93";
|
||||
#endif
|
||||
static const char rcsid[] =
|
||||
"$Id: telnetd.c,v 1.13 1997/12/03 07:16:05 charnier Exp $";
|
||||
"$Id: telnetd.c,v 1.14 1998/04/26 06:51:36 phk Exp $";
|
||||
#endif /* not lint */
|
||||
|
||||
#include "telnetd.h"
|
||||
@ -1091,13 +1091,13 @@ telnet(f, p, host)
|
||||
#endif
|
||||
|
||||
if (getent(defent, "default") == 1) {
|
||||
char *getstr();
|
||||
char *Getstr();
|
||||
char *cp=defstrs;
|
||||
|
||||
HE = getstr("he", &cp);
|
||||
HN = getstr("hn", &cp);
|
||||
IM = getstr("im", &cp);
|
||||
IF = getstr("if", &cp);
|
||||
HE = Getstr("he", &cp);
|
||||
HN = Getstr("hn", &cp);
|
||||
IM = Getstr("im", &cp);
|
||||
IF = Getstr("if", &cp);
|
||||
if (HN && *HN)
|
||||
(void) strcpy(host_name, HN);
|
||||
if (IF && (if_fd = open(IF, O_RDONLY, 000)) != -1)
|
||||
|
Loading…
Reference in New Issue
Block a user