From b031af348c7dcc8c74bf49945211c466b8eca079 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 27 Aug 2001 19:46:22 +0000 Subject: converted another bunch of stuff to NTSTATUS (This used to be commit 1d36250e338ae0ff9fbbf86019809205dd97d05e) --- source3/lib/cmd_interp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/lib/cmd_interp.c') diff --git a/source3/lib/cmd_interp.c b/source3/lib/cmd_interp.c index 0ae6f5fb83..1d31d78b94 100644 --- a/source3/lib/cmd_interp.c +++ b/source3/lib/cmd_interp.c @@ -314,7 +314,7 @@ static uint32 cmd_set_options = 0xffffffff; ****************************************************************************/ static uint32 do_command(struct client_info *info, char *line) { - uint32 status = 0x0; + NTSTATUS status = 0x0; int i; if (!get_cmd_args(line)) @@ -355,7 +355,7 @@ static uint32 do_command(struct client_info *info, char *line) ****************************************************************************/ static uint32 process(struct client_info *info, char *cmd_str) { - uint32 status = 0; + NTSTATUS status = 0; pstring line; char *cmd = cmd_str; @@ -1286,7 +1286,7 @@ static void readline_init(void) ****************************************************************************/ int command_main(int argc, char *argv[]) { - uint32 status; + NTSTATUS status; mode_t myumask = 0755; char progname[255], path[255], *s; pstring msg; -- cgit