Apply secure logs
authorSunwook Bae <sunwook45.bae@samsung.com>
Fri, 10 May 2013 07:26:24 +0000 (16:26 +0900)
committerSunwook Bae <sunwook45.bae@samsung.com>
Fri, 10 May 2013 07:29:34 +0000 (16:29 +0900)
Change-Id: I7e5505f6f08c920d1e5465f405198b280b5ed0dd
Signed-off-by: Sunwook Bae <sunwook45.bae@samsung.com>
src/io/FIo_DirEnumeratorImpl.cpp
src/io/FIo_NormalFile.cpp
src/io/FIo_SecureFile.cpp

index 032bbc6..2d2f151 100644 (file)
@@ -173,7 +173,7 @@ _DirEnumeratorImpl::MoveNext(void)
 
        // get its details
        ret = stat64(pAbsDirEntryPath.get(), &statbuf);
-       SysTryReturn(NID_IO, (ret == 0), r = __ConvertNativeErrorToResult(errno), __ConvertNativeErrorToResult(errno),
+       SysSecureTryReturn(NID_IO, (ret == 0), r = __ConvertNativeErrorToResult(errno), __ConvertNativeErrorToResult(errno),
                        "[%s] Failed to get attributes for dir entry (%s) whose absolute dirpath is (%s)with errno [%d].",
                        __ConvertNativeErrorToMessage(errno), dirEnt.d_name, pAbsDirPath.get(), errno);
 
index 97b2b8d..f4edb77 100644 (file)
@@ -88,7 +88,7 @@ _NormalFile::Construct(const String& filePath, const char* pOpenMode)
        if (pFile == null)
        {
                r = __ConvertNativeErrorToResult(errno);
-               SysLogException(NID_IO, r, "[%s] Failed to open file (%s) in openMode (%s), errno: %d (%s).",
+               SysSecureLogException(NID_IO, r, "[%s] Failed to open file (%s) in openMode (%s), errno: %d (%s).",
                                GetErrorMessage(r), pFilePath.get(), pOpenMode, errno, strerror(errno));
                return r;
        }
index 76bbfed..4ea78ed 100644 (file)
@@ -98,7 +98,7 @@ _SecureFile::Construct(const String& filePath, const char* pOpenMode, const Byte
        {
                r = pNormalFile->Construct(filePath, pOpenMode);
        }
-       SysTryReturn(NID_IO, !IsFailed(r), r, r, "[%s] Failed to open file (%ls) in openmode (%s).",
+       SysSecureTryReturn(NID_IO, !IsFailed(r), r, r, "[%s] Failed to open file (%ls) in openmode (%s).",
                                 GetErrorMessage(r), filePath.GetPointer(), pOpenMode);
 
        if (_append)