Fixed broken configure.in script
This commit is contained in:
@@ -71,6 +71,7 @@ OWNER = @OWNER@
|
||||
PACKAGE = @PACKAGE@
|
||||
RANLIB = @RANLIB@
|
||||
VERSION = @VERSION@
|
||||
YACC = @YACC@
|
||||
|
||||
SUBDIRS = .
|
||||
noinst_PROGRAMS = mbsebbs mball mblang mbchat mbfbgen mbstat mbtoberep mbuser mbuseradd mbpasswd
|
||||
|
@@ -2,7 +2,7 @@
|
||||
*
|
||||
* File ..................: bbs/funcs.c
|
||||
* Purpose ...............: Misc functions
|
||||
* Last modification date : 22-Oct-2001
|
||||
* Last modification date : 29-Oct-2001
|
||||
*
|
||||
*****************************************************************************
|
||||
* Copyright (C) 1997-2001
|
||||
@@ -53,7 +53,7 @@
|
||||
extern long ActiveMsgs;
|
||||
extern time_t t_start;
|
||||
extern int e_pid;
|
||||
|
||||
extern char **environ;
|
||||
|
||||
|
||||
/*
|
||||
|
@@ -202,7 +202,7 @@ void GetstrU(char *sStr, int iMaxlen)
|
||||
putchar('\007');
|
||||
}
|
||||
|
||||
if (isalnum(ch) || (ch == '@')) {
|
||||
if (isalnum(ch) || (ch == '@') || (ch == '.')) {
|
||||
if (iPos <= iMaxlen) {
|
||||
iPos++;
|
||||
sprintf(sStr, "%s%c", sStr, ch);
|
||||
|
Reference in New Issue
Block a user