Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
52d8d000
Commit
52d8d000
authored
Oct 11, 1998
by
Per Cederqvist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(main): Allow -g even if errors occured, but only if the user confirms.
parent
2cb3da7f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
3 deletions
+17
-3
src/server/dbck.c
src/server/dbck.c
+17
-3
No files found.
src/server/dbck.c
View file @
52d8d000
/*
* $Id: dbck.c,v 0.4
0
1998/
07/26 16:48:17
ceder Exp $
* $Id: dbck.c,v 0.4
1
1998/
10/11 16:56:26
ceder Exp $
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -29,7 +29,7 @@
*/
static
const
char
*
rcsid
=
"$Id: dbck.c,v 0.4
0
1998/
07/26 16:48:17
ceder Exp $"
;
rcsid
=
"$Id: dbck.c,v 0.4
1
1998/
10/11 16:56:26
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -1620,7 +1620,21 @@ main (int argc,
log
(
"ready.
\n
"
);
}
else
log
(
"Compression not done since errors was found.
\n
"
);
{
log
(
"Found %d errors; performed %d modifications.
\n
"
,
errors
,
modifications
);
fflush
(
stdout
);
fflush
(
stderr
);
if
(
confirm
(
"garb texts anyhow?"
))
{
garb_text_file
();
log
(
"ready.
\n
"
);
}
else
{
log
(
"Compression not done since errors was found.
\n
"
);
}
}
}
return
errors
!=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment