]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
synclient: fix bad leading / on play ~ prefix
authorSage Weil <sage@newdream.net>
Thu, 10 Sep 2009 23:24:40 +0000 (16:24 -0700)
committerSage Weil <sage@newdream.net>
Thu, 10 Sep 2009 23:24:40 +0000 (16:24 -0700)
src/client/SyntheticClient.cc

index e103bdac07c76bc47ef55945a070bae9350b19fc..2ef066ee5e3d0a953e24a2bd3740fbb468bb5f07 100644 (file)
@@ -295,7 +295,7 @@ string SyntheticClient::get_sarg(int seq)
   }
   if (a.length() == 0 || a == "~") {
     char s[30];
-    sprintf(s,"/syn.%lld.%d", (long long)client->whoami.v, seq);
+    sprintf(s,"syn.%lld.%d", (long long)client->whoami.v, seq);
     a = s;
   } 
   return a;