diff options
author | Amar Tumballi <amar@gluster.com> | 2010-08-03 08:06:43 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-08-03 09:45:56 -0700 |
commit | f9f4c5722536faee3d9ecbd8b99ce138e724f401 (patch) | |
tree | 5179c58012791632f488123a3f4550c93853d4d0 /cli/src/cli-cmd.c | |
parent | 1be4d5e16e38f142931a0df1e3d25ed492cb494e (diff) |
make some not implemented commands return success
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 1264 ()
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1264
Diffstat (limited to 'cli/src/cli-cmd.c')
-rw-r--r-- | cli/src/cli-cmd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/src/cli-cmd.c b/cli/src/cli-cmd.c index b4967d2cca6..f7c04443c05 100644 --- a/cli/src/cli-cmd.c +++ b/cli/src/cli-cmd.c @@ -170,6 +170,10 @@ cli_cmds_register (struct cli_state *state) if (ret) goto out; + ret = cli_cmd_log_register (state); + if (ret) + goto out; + out: return ret; } |