diff --git a/Documentation/git-fast-import.txt b/Documentation/git-fast-import.txt
index 6be3938..5937cc0 100644
--- a/Documentation/git-fast-import.txt
+++ b/Documentation/git-fast-import.txt
@@ -1119,7 +1119,6 @@ operator can use this facility to peek at the objects and refs from an
import in progress, at the cost of some added running time and worse
compression.
-
Author
------
Written by Shawn O. Pearce <spearce@spearce.org>.
diff --git a/fast-import.c b/fast-import.c
index e8f08fb..a348994 100644
--- a/fast-import.c
+++ b/fast-import.c
@@ -490,7 +490,6 @@ static NORETURN void die_nicely(const char *err, va_list params)
static void set_checkpoint_signal(void)
{
- /* nothing */
}
#else@@ -2351,7 +2350,7 @@ static void parse_reset_branch(void)
unread_command_buf = 1;
}
-static void do_checkpoint(void)
+static void checkpoint(void)
{
checkpoint_requested = 0;
if (object_count) {@@ -2364,7 +2363,7 @@ static void do_checkpoint(void)
static void parse_checkpoint(void)
{
- do_checkpoint();
+ checkpoint_requested = 1;
skip_optional_lf();
}
@@ -2524,7 +2523,7 @@ int main(int argc, const char **argv)
die("Unsupported command: %s", command_buf.buf);
if (checkpoint_requested)
- do_checkpoint();
+ checkpoint();
}
end_packfile();