Typo fixes in installRequestAuthCheck 63/30963/1
authorSebastian Grabowski <s.grabowski@samsung.com>
Thu, 27 Nov 2014 15:15:23 +0000 (16:15 +0100)
committerSebastian Grabowski <s.grabowski@samsung.com>
Thu, 27 Nov 2014 15:18:32 +0000 (16:18 +0100)
Changed 'paramter' to 'parameter' in installRequestAuthCheck function.

Change-Id: Iba5e3f6c3388c9faea8a326b7bf8e1b4ba48b0fa
Signed-off-by: Sebastian Grabowski <s.grabowski@samsung.com>
src/common/service_impl.cpp

index 360196f..f2a234c 100644 (file)
@@ -83,7 +83,7 @@ static inline bool installRequestAuthCheck(const app_inst_req &req, uid_t uid)
         pwd = getpwuid(uid);
         if (!pwd && errno != EINTR) {
             LogError("getpwuid failed with '" << uid
-                    << "' as paramter: " << strerror(errno));
+                    << "' as parameter: " << strerror(errno));
             return false;
         }
     } while (!pwd);
@@ -92,7 +92,7 @@ static inline bool installRequestAuthCheck(const app_inst_req &req, uid_t uid)
         realpath(pwd->pw_dir, NULL), free);
     if (!home.get()) {
             LogError("realpath failed with '" << pwd->pw_dir
-                    << "' as paramter: " << strerror(errno));
+                    << "' as parameter: " << strerror(errno));
             return false;
     }
 
@@ -101,7 +101,7 @@ static inline bool installRequestAuthCheck(const app_inst_req &req, uid_t uid)
             realpath(appPath.first.c_str(), NULL), free);
         if (!real_path.get()) {
             LogError("realpath failed with '" << appPath.first.c_str()
-                    << "' as paramter: " << strerror(errno));
+                    << "' as parameter: " << strerror(errno));
             return false;
         }
         LogDebug("Requested path is '" << appPath.first.c_str()