From b8ecf28e22b24cf220bbae8042ca3c2d16c7e080 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Tue, 16 Oct 2007 17:55:10 +0000 Subject: [PATCH] restore-20071016 FIXES 74531 afs_com_err() was called without specifying the error code. --- src/bucoord/restore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bucoord/restore.c b/src/bucoord/restore.c index a06bc65b15..f4d743e017 100644 --- a/src/bucoord/restore.c +++ b/src/bucoord/restore.c @@ -224,7 +224,7 @@ bc_Restorer(aindex) code = bcdb_FindDumpByID(dumpTaskPtr->parentDumpID, dumpDescr); if (code) { - afs_com_err(whoami, "Couldn't look up info for dump %d\n", + afs_com_err(whoami, code, "Couldn't look up info for dump %d\n", dumpTaskPtr->parentDumpID); continue; }