From: Jeffrey Altman Date: Tue, 16 Oct 2007 17:56:48 +0000 (+0000) Subject: STABLE14-restore-20071016 X-Git-Tag: openafs-stable-1_4_5pre3~6 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=0e4db04492d81b856ec8d27899c7afb2ffa98710;p=packages%2Fo%2Fopenafs.git STABLE14-restore-20071016 FIXES 74531 afs_com_err() was called without specifying the error code. (cherry picked from commit b8ecf28e22b24cf220bbae8042ca3c2d16c7e080) --- diff --git a/src/bucoord/restore.c b/src/bucoord/restore.c index a06bc65b1..f4d743e01 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; }