Added confirmation for mbfido areas without -q option
This commit is contained in:
parent
f4cd4ed971
commit
4df2a01a1c
@ -14,6 +14,8 @@ v0.61.3 25-Jul-2004
|
|||||||
mbfido:
|
mbfido:
|
||||||
Changed netmail counters in the .msg import function.
|
Changed netmail counters in the .msg import function.
|
||||||
Fixed logging of 0 articles in scannews.
|
Fixed logging of 0 articles in scannews.
|
||||||
|
With the command "mbfido areas" without the -q option the user
|
||||||
|
must confirm this action.
|
||||||
|
|
||||||
mbfile:
|
mbfile:
|
||||||
Fixed a bug where "mbfile k p i" didn't give the help screen.
|
Fixed a bug where "mbfile k p i" didn't give the help screen.
|
||||||
|
3
TODO
3
TODO
@ -114,9 +114,6 @@ mbfido:
|
|||||||
|
|
||||||
N: Hatch statistics are not updated.
|
N: Hatch statistics are not updated.
|
||||||
|
|
||||||
N: If areas command is given without -quiet, ask user if he/she really
|
|
||||||
want's to do this.
|
|
||||||
|
|
||||||
mbcico:
|
mbcico:
|
||||||
L: Implement binkp option ND.
|
L: Implement binkp option ND.
|
||||||
|
|
||||||
|
@ -254,7 +254,7 @@ void die(int onsig)
|
|||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int i, Loop, envrecip_count = 0;
|
int i, x, Loop, envrecip_count = 0;
|
||||||
char *p, *cmd, *temp, Options[81];
|
char *p, *cmd, *temp, Options[81];
|
||||||
struct passwd *pw;
|
struct passwd *pw;
|
||||||
struct tm *t;
|
struct tm *t;
|
||||||
@ -602,8 +602,19 @@ int main(int argc, char **argv)
|
|||||||
MakeStat();
|
MakeStat();
|
||||||
if (do_uucp)
|
if (do_uucp)
|
||||||
NewsUUCP();
|
NewsUUCP();
|
||||||
if (do_areas)
|
if (do_areas) {
|
||||||
|
if (!do_quiet) {
|
||||||
|
colour(LIGHTGREEN, BLACK);
|
||||||
|
printf("Are you sure to process all area lists [y/N] ");
|
||||||
|
fflush(stdout);
|
||||||
|
x = Getone();
|
||||||
|
printf("\r \r");
|
||||||
|
fflush(stdout);
|
||||||
|
if (toupper(x) != 'Y')
|
||||||
|
die(MBERR_OK);
|
||||||
|
}
|
||||||
Areas();
|
Areas();
|
||||||
|
}
|
||||||
if (do_flush)
|
if (do_flush)
|
||||||
flush_queue();
|
flush_queue();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user