Browse Source

unpack-trees.c: verify_uptodate: remove dead code

This code was killed by commit fcc387db9b.

Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Sven Verdoolaege 18 years ago committed by Junio C Hamano
parent
commit
0a76f66524
  1. 4
      unpack-trees.c

4
unpack-trees.c

@ -452,10 +452,6 @@ static void verify_uptodate(struct cache_entry *ce, @@ -452,10 +452,6 @@ static void verify_uptodate(struct cache_entry *ce,
return;
errno = 0;
}
if (o->reset) {
ce->ce_flags |= htons(CE_UPDATE);
return;
}
if (errno == ENOENT)
return;
die("Entry '%s' not uptodate. Cannot merge.", ce->name);

Loading…
Cancel
Save