From: Stelian Pop Date: Wed, 30 Mar 2005 13:21:45 +0000 (+0000) Subject: Fix a small bug on an error path introduced by the hashtree patch. X-Git-Tag: release_0_4b40~3 X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=commitdiff_plain;h=f32a70b091d3ee6524e760ec2cb21080f67fe2ee Fix a small bug on an error path introduced by the hashtree patch. --- diff --git a/restore/utilities.c b/restore/utilities.c index c16590c..f17bd9c 100644 --- a/restore/utilities.c +++ b/restore/utilities.c @@ -37,7 +37,7 @@ #ifndef lint static const char rcsid[] = - "$Id: utilities.c,v 1.27 2005/01/13 15:41:07 stelian Exp $"; + "$Id: utilities.c,v 1.28 2005/03/30 13:21:45 stelian Exp $"; #endif /* not lint */ #include @@ -380,7 +380,7 @@ badentry(struct entry *ep, const char *msg) int i; for (i = 0; i < DIRHASH_SIZE; i++) { if (ep->e_entries[i] != NULL) { - fprintf(stderr, "next entry name: %s\n", myname(ep->e_entries[0])); + fprintf(stderr, "next entry name: %s\n", myname(ep->e_entries[i])); break; } }