diff -r b3a1d9898418 -r 95f71bcdcdb7 userlibandfileserver/fileserver/shostmassstorage/server/controller/cusbhostmsdevice.cpp --- a/userlibandfileserver/fileserver/shostmassstorage/server/controller/cusbhostmsdevice.cpp Fri May 14 17:13:29 2010 +0300 +++ b/userlibandfileserver/fileserver/shostmassstorage/server/controller/cusbhostmsdevice.cpp Thu May 27 14:17:14 2010 +0300 @@ -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(); }