summaryrefslogtreecommitdiffstats
path: root/cli
diff options
context:
space:
mode:
authorMilind Changire <mchangir@redhat.com>2019-02-23 18:58:48 +0530
committerShyamsundar Ranganathan <srangana@redhat.com>2019-02-25 15:23:11 +0000
commit155ebe4b5719f40b3feaf9fd8ff892cc10ad0e78 (patch)
treeecbc9f2e88f385ff6b8f7f357b1678601b520c11 /cli
parent2620dbccccb63fba66384b17b47ddd8e784e8390 (diff)
socket: socket event handlers now return void
Problem: Returning any value from socket event handlers to the event sub-system doesn't make sense since event sub-system cannot handle socket sub-system errors. Solution: Change return type of all socket event handlers to 'void' mainline: > Reviewed-on: https://review.gluster.org/c/glusterfs/+/22221 Change-Id: I70dc2c57f12b7ea2fae41120f71aa0d7fe0b2b6f Fixes: bz#1651246 Signed-off-by: Milind Changire <mchangir@redhat.com> (cherry picked from commit 776ba851c6ee6c265253d44cf1d6e4e3d4a21772)
Diffstat (limited to 'cli')
-rw-r--r--cli/src/cli-rl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/src/cli-rl.c b/cli/src/cli-rl.c
index dd0993b8646..495f9391a1a 100644
--- a/cli/src/cli-rl.c
+++ b/cli/src/cli-rl.c
@@ -102,7 +102,7 @@ cli_rl_process_line(char *line)
state->rl_processing = 0;
}
-int
+void
cli_rl_stdin(int fd, int idx, int gen, void *data, int poll_out, int poll_in,
int poll_err)
{
@@ -114,7 +114,7 @@ cli_rl_stdin(int fd, int idx, int gen, void *data, int poll_out, int poll_in,
event_handled(state->ctx->event_pool, fd, idx, gen);
- return 0;
+ return;
}
char *