mirror of
https://git.openafs.org/openafs.git
synced 2025-01-31 21:47:45 +00:00
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:
parent
4219ff53b2
commit
d15e6994a0
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user