From 62f7f6a022dea6fd4fbe514dcb3154bda334a07f Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 10 Aug 2001 06:01:11 +0000 Subject: Use the new client error api. (This used to be commit 688da3c41dd944f7f69083518d25e9edbc55406f) --- source3/lib/cmd_interp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/cmd_interp.c b/source3/lib/cmd_interp.c index 52f025636a..0ae6f5fb83 100644 --- a/source3/lib/cmd_interp.c +++ b/source3/lib/cmd_interp.c @@ -1363,7 +1363,7 @@ int command_main(int argc, char *argv[]) /* Should we exit? Are we done? */ if (cmd_set_options & (CMD_HELP|CMD_STR)) { free_connections(); - get_safe_nt_error_msg(status, msg, sizeof(msg)); + get_nt_error_msg(status, msg, sizeof(msg)); report(out_hnd, "Exit Status: %s\n", msg); /* unix only has 8 bit error codes - blergh */ @@ -1383,7 +1383,7 @@ int command_main(int argc, char *argv[]) commands = NULL; /* report and exit */ - get_safe_nt_error_msg(status, msg, sizeof(msg)); + get_nt_error_msg(status, msg, sizeof(msg)); report(out_hnd, "Exit Status: %s\n", msg); return status; } -- cgit