Fixed broken configure.in script

This commit is contained in:
Michiel Broek
2001-10-29 12:06:36 +00:00
parent a27c5983cd
commit f5009b2c36
17 changed files with 907 additions and 539 deletions

View File

@@ -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

View File

@@ -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;
/*

View File

@@ -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);