diff --git a/ChangeLog b/ChangeLog index 61ccfeea..ffab7758 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,6 +15,9 @@ v0.61.3 25-Jul-2004 Changed netmail counters in the .msg import function. Fixed logging of 0 articles in scannews. + mbfile: + Fixed a bug where "mbfile k p i" didn't give the help screen. + examples: Fixed 2 spelling errors in the dutch macro templates. diff --git a/TODO b/TODO index c374727e..3d131ccb 100644 --- a/TODO +++ b/TODO @@ -140,8 +140,6 @@ mbfile: N: It is not possible to import areas that run of cd-roms. Do we still need cd-rom support with current hd prices? - N: mbfile k p i doesn't run index and doesn't give an error message. - mbaff: L: Rewrite filefind search algorithm. diff --git a/mbfido/mbfile.c b/mbfido/mbfile.c index 42ae14a7..e36807f4 100644 --- a/mbfido/mbfile.c +++ b/mbfido/mbfile.c @@ -164,6 +164,8 @@ int main(int argc, char **argv) cmd = xstrcat(cmd, (char *)" "); cmd = xstrcat(cmd, argv[i]); } + } else if (!strcasecmp(argv[i], "i")) { + Help(); } else if (!strncasecmp(argv[i], "l", 1)) { do_list = TRUE; if (argc > (i + 1)) {