diff -r 2b2a51c87b12 -r e408fc570bb5 userlibandfileserver/fileserver/shostmassstorage/server/controller/cusbhostmsdevice.cpp --- a/userlibandfileserver/fileserver/shostmassstorage/server/controller/cusbhostmsdevice.cpp Fri Apr 23 22:38:37 2010 +0100 +++ b/userlibandfileserver/fileserver/shostmassstorage/server/controller/cusbhostmsdevice.cpp Tue Apr 27 15:10:09 2010 +0100 @@ -166,14 +166,14 @@ // interface suspension to the transport layer for (TInt i = 0; i < iLuList.Count(); i++) { - CUsbHostMsLogicalUnit& lu = iLuList.GetLuL(i); + CUsbHostMsLogicalUnit& lu = iLuList.GetLu(i); if (!lu.IsReadyToSuspend() && lu.IsConnected()) return; } for (TInt i = 0; i < iLuList.Count(); i++) { - CUsbHostMsLogicalUnit& lu = iLuList.GetLuL(i); + CUsbHostMsLogicalUnit& lu = iLuList.GetLu(i); SetLunL(lu); lu.SuspendL(); } @@ -299,7 +299,7 @@ TInt err; for (TInt i = 0; i < iLuList.Count(); i++) { - CUsbHostMsLogicalUnit& lu = iLuList.GetLuL(i); + CUsbHostMsLogicalUnit& lu = iLuList.GetLu(i); SetLunL(lu); TRAP(err, lu.DoLunReadyCheckL()); } @@ -315,7 +315,7 @@ // interface suspension to the transport layer for (TInt i = 0; i < iLuList.Count(); i++) { - CUsbHostMsLogicalUnit& lu = iLuList.GetLuL(i); + CUsbHostMsLogicalUnit& lu = iLuList.GetLu(i); // Has any of the logical units have got its state changed? if ( (lu.IsReadyToSuspend() && !lu.IsConnected()) || (!lu.IsReadyToSuspend() && lu.IsConnected()) ) @@ -327,7 +327,7 @@ for (TInt i = 0; i < iLuList.Count(); i++) { - CUsbHostMsLogicalUnit& lu = iLuList.GetLuL(i); + CUsbHostMsLogicalUnit& lu = iLuList.GetLu(i); SetLunL(lu); lu.SuspendL(); } @@ -341,7 +341,7 @@ __MSFNLOG for (TInt i = 0; i < iLuList.Count(); i++) { - CUsbHostMsLogicalUnit& lu = iLuList.GetLuL(i); + CUsbHostMsLogicalUnit& lu = iLuList.GetLu(i); SetLunL(lu); lu.ResumeL(); }