From 93230a64bc9369c726cc68d3f539b3bf66cff069 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 19 Jan 2009 18:23:40 +0000 Subject: Pass return code from _exec; allow command sequences to work from the command line. --- cmd-start-server.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'cmd-start-server.c') diff --git a/cmd-start-server.c b/cmd-start-server.c index ca2e1cb2..364b3f4f 100644 --- a/cmd-start-server.c +++ b/cmd-start-server.c @@ -1,4 +1,4 @@ -/* $Id: cmd-start-server.c,v 1.5 2008-06-05 21:25:00 nicm Exp $ */ +/* $Id: cmd-start-server.c,v 1.6 2009-01-19 18:23:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -24,7 +24,7 @@ * Start the server and do nothing else. */ -void cmd_start_server_exec(struct cmd *, struct cmd_ctx *); +int cmd_start_server_exec(struct cmd *, struct cmd_ctx *); const struct cmd_entry cmd_start_server_entry = { "start-server", "start", @@ -39,9 +39,8 @@ const struct cmd_entry cmd_start_server_entry = { NULL }; -void -cmd_start_server_exec(unused struct cmd *self, struct cmd_ctx *ctx) +int +cmd_start_server_exec(unused struct cmd *self, unused struct cmd_ctx *ctx) { - if (ctx->cmdclient != NULL) - server_write_client(ctx->cmdclient, MSG_EXIT, NULL, 0); + return (0); } -- cgit