STABLE14-windows-vol-ntops-20060905

if the function is namei_XXX on unix then it is nt_XXXX on Windows


(cherry picked from commit 51b862ef8869823fd0ba09045b88cab9ab197117)
This commit is contained in:
Jeffrey Altman 2006-09-06 00:48:50 +00:00
parent 4219ff53b2
commit d15e6994a0

View File

@ -1980,7 +1980,11 @@ DoSalvageVolumeGroup(register struct InodeSummary *isp, int nVols)
for (i = 0; i < nVols; i++) {
ip = allInodes + isp[i].index;
for (j = isp[i].nSpecialInodes; j < isp[i].nInodes; j++) {
#ifdef AFS_NT40_ENV
nt_SetLinkCount(fdP, ip[j].inodeNumber, 1, 1);
#else
namei_SetLinkCount(fdP, ip[j].inodeNumber, 1, 1);
#endif
}
}
}