]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
client: fix whitespace in stat relpath 1771/head
authorSage Weil <sage@inktank.com>
Tue, 2 Jul 2013 00:48:09 +0000 (17:48 -0700)
committerYan, Zheng <zheng.z.yan@intel.com>
Sat, 10 May 2014 03:50:09 +0000 (11:50 +0800)
Signed-off-by: Sage Weil <sage@inktank.com>
src/client/Client.cc

index bf4ced7c893dadee648fed9d7650b8fd5fc6caab..c4a40e66ac66275074abb36627a0f6b66a1c4792 100644 (file)
@@ -4838,7 +4838,7 @@ int Client::fsetattr(int fd, struct stat *attr, int mask)
 int Client::stat(const char *relpath, struct stat *stbuf,
                          frag_info_t *dirstat, int mask)
 {
-  ldout(cct, 3) << "stat enter (relpath" << relpath << " mask " << mask << ")" << dendl;
+  ldout(cct, 3) << "stat enter (relpath " << relpath << " mask " << mask << ")" << dendl;
   Mutex::Locker lock(client_lock);
   tout(cct) << "stat" << std::endl;
   tout(cct) << relpath << std::endl;
@@ -4853,14 +4853,14 @@ int Client::stat(const char *relpath, struct stat *stbuf,
     return r;
   }
   fill_stat(in, stbuf, dirstat);
-  ldout(cct, 3) << "stat exit (relpath" << relpath << " mask " << mask << ")" << dendl;
+  ldout(cct, 3) << "stat exit (relpath " << relpath << " mask " << mask << ")" << dendl;
   return r;
 }
 
 int Client::lstat(const char *relpath, struct stat *stbuf,
                          frag_info_t *dirstat, int mask)
 {
-  ldout(cct, 3) << "lstat enter (relpath" << relpath << " mask " << mask << ")" << dendl;
+  ldout(cct, 3) << "lstat enter (relpath " << relpath << " mask " << mask << ")" << dendl;
   Mutex::Locker lock(client_lock);
   tout(cct) << "lstat" << std::endl;
   tout(cct) << relpath << std::endl;
@@ -4876,7 +4876,7 @@ int Client::lstat(const char *relpath, struct stat *stbuf,
     return r;
   }
   fill_stat(in, stbuf, dirstat);
-  ldout(cct, 3) << "lstat exit (relpath" << relpath << " mask " << mask << ")" << dendl;
+  ldout(cct, 3) << "lstat exit (relpath " << relpath << " mask " << mask << ")" << dendl;
   return r;
 }