This commit is contained in:
Andrew Leary 2018-09-07 05:15:37 -04:00
parent 0aa9600d73
commit 3ab30c464c
4 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,8 @@
v1.0.7.5 31-Dec-2017 - Andrew Leary/Vince Coen
1. Fixed bug causing the -v option (disable virus check) to
fail when running mbfile adopt.
v1.0.7.4 26-Aug-2017 - Andrew Leary
1. Updated to FTSCPROD.019 as released by the FTSC.

2
configure vendored
View File

@ -2309,7 +2309,7 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang
PACKAGE="mbsebbs"
MAJOR="1"
MINOR="0"
REVISION="7.4"
REVISION="7.5"
VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm"

View File

@ -12,7 +12,7 @@ AC_SUBST(SUBDIRS)
PACKAGE="mbsebbs"
MAJOR="1"
MINOR="0"
REVISION="7.4"
REVISION="7.5"
VERSION="$MAJOR.$MINOR.$REVISION"
COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved"
SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm"

View File

@ -120,11 +120,12 @@ int main(int argc, char **argv)
cmd = xstrcat(cmd, argv[i]);
if (!strncasecmp(argv[i], "-a", 2)) {
do_annon = TRUE;
} else if (!strncasecmp(argv[i], "-v", 2)) {
do_novir = TRUE;
} else {
Description = xstrcpy(argv[i]);
}
}
break;
}
} else if ((!strncasecmp(argv[i], "d", 1)) || (!strncasecmp(argv[i], "u", 1))) {
if (!strncasecmp(argv[i], "u", 1))