Change-Id: I383ce8679828f91d013d1f98ea3d25c73a0399df
Reviewed-on: http://gerrit.openafs.org/5356
Reviewed-by: Jeffrey Altman <jaltman@openafs.org>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
/*
* search the list until we find the server
* that failed last time. When we find it
- * clear the error, skip it and try the one
+ * clear the error, skip it and try the next one
* in the list.
*/
if (tsp == reqp->tokenIdleErrorServp)
nbytes = save_nbytes;
goto retry;
}
-
- /* Prefer StoreData error over rx_EndCall error */
- if (code1 != 0)
+ /* Prefer rx_EndCall error over StoreData error */
+ if (code1 != 0) {
+ osi_Log2(afsd_logp, "rx_EndCall converted 0x%x to 0x%x", code, code1);
code = code1;
+ }
} while (cm_Analyze(connp, userp, reqp, &scp->fid, &volSync, NULL, NULL, code));
code = cm_MapRPCError(code, reqp);