diff -r 1a3f0bca12c6 -r fdc38da86094 connectivitymodules/SeCon/services/pcd/src/sconqueue.cpp --- a/connectivitymodules/SeCon/services/pcd/src/sconqueue.cpp Mon May 03 12:24:28 2010 +0300 +++ b/connectivitymodules/SeCon/services/pcd/src/sconqueue.cpp Thu May 27 12:45:29 2010 +0300 @@ -265,7 +265,17 @@ default : iQueue[index]->SetCompleteValue( complete ); - progress = KSConCodeConflict; + if ( aError < KErrNone && aError >= KErrCorruptSurrogateFound ) + { + // aError is always negative + // -> returned errorcode is from KSConCodeFirstSymbianErr...n + progress = KSConCodeFirstSymbianErr - aError; + } + else + { + progress = KSConCodeConflict; + } + break; }