diff options
| author | Kaushik BV <kaushikbv@gluster.com> | 2011-03-30 06:03:05 +0000 | 
|---|---|---|
| committer | Vijay Bellur <vijay@dev.gluster.com> | 2011-03-30 08:22:05 -0700 | 
| commit | f8c798350a5efa537418d1453f3e547574e68b55 (patch) | |
| tree | 9fef95354664ebb7c3d9d87a85359b4aaed6040f /cli | |
| parent | d1c0e5b0dc64bb431c384b7584ea362143d8ef46 (diff) | |
mgmt/Glusterd: add pid extension to the pid file of the gsyncd
Signed-off-by: Kaushik BV <kaushikbv@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 2538 (pidfile naming)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2538
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/src/cli-rpc-ops.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/src/cli-rpc-ops.c b/cli/src/cli-rpc-ops.c index bb67af40c95..503611a8795 100644 --- a/cli/src/cli-rpc-ops.c +++ b/cli/src/cli-rpc-ops.c @@ -2635,7 +2635,7 @@ gf_cli3_1_gsync_get_pid_file (char *pidfolder, char *pidfile, char *master, char          ptr = fgets(buff, sizeof(buff), in);          if (ptr) {                  buff[strlen(buff)-1]='\0'; //strip off \n -                snprintf (buffer, PATH_MAX, "%s/%s", pidfolder, buff); +                snprintf (buffer, PATH_MAX, "%s/%s.pid", pidfolder, buff);                  strncpy (pidfile, buffer, PATH_MAX);          }          else {  | 
