Bring Git repository to v1.0.6.13 level.

This commit is contained in:
Andrew Leary
2017-01-18 19:45:13 -05:00
parent 071cd93a0c
commit 330ca5153f
12 changed files with 85 additions and 50 deletions

View File

@@ -42,7 +42,7 @@ OBJS = ${COMMON_OBJS} ${DBASE_OBJS} ${MSGBASE_OBJS} ${MBINET_OBJS} \
${DIESEL_OBJS} ${NODELIST_OBJS} ${CHC_OBJS}
HDRS = ${COMMON_HDRS} ${DBASE_HDRS} ${MSGBASE_HDRS} ${MBINET_HDRS} \
${DIESEL_HDRS} ${NODELIST_HDRS} ${CHC_HDRS} ${OTHER_HDRS}
OTHER = Makefile README ftscprod.016 mkprod.awk \
OTHER = Makefile README ftscprod.017 mkprod.awk \
README.diesel README.macro Diesel.doc nodelist.conf
TARGET = libmbse.a libdbase.a libmsgbase.a libmbinet.a libdiesel.a \
libnodelist.a

View File

@@ -1021,12 +1021,10 @@ node *getnlent(faddr *addr)
if ((r = strchr(p, ':'))) {
r++;
/*
* If there is a user@domain then strip the userpart.
* If there is a user@domain then skip to the next flag.
*/
if (strchr(r, '@')) {
r = strchr(r, '@');
r++;
}
if (strchr(r, '@'))
continue;
if (*r == '*') {
Syslog('n', "getnlent: possible default domain marking \"%s\"", MBSE_SS(r));
for (tmpd = &nl_domsuffix; *tmpd; tmpd=&((*tmpd)->next)) {

View File

@@ -150,6 +150,7 @@ struct userrec {
unsigned FSemacs : 1; /* FSedit uses emacs keys */
char Password[Max_passlen+1];/* Plain password */
int Charset; /* Character set */
int OLRext; /* OLR extension counter */
};