1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

hey, jerry: turns out you _have_ converted to get_safe_nt_errmsg!!!

[got confused with which way dirdiff was going :)].

... but you forgot to update TNG's lib/cmd_interp.c...
This commit is contained in:
Luke Leighton 0001-01-01 00:00:00 +00:00
parent b2e044f89d
commit 8fe195df0b

View File

@ -1313,8 +1313,9 @@ int command_main(int argc, char *argv[])
if (IS_BITS_SET_SOME(cmd_set_options, CMD_HELP|CMD_STR))
{
free_connections();
get_safe_nt_error_msg(status, msg, sizeof(msg));
report(out_hnd, "Exit Status: %s\n", get_nt_error_msg(status));
report(out_hnd, "Exit Status: %s\n", msg);
/* unix only has 8 bit error codes - blergh */
exit(status & 0xFF);
}
@ -1330,7 +1331,8 @@ int command_main(int argc, char *argv[])
num_commands = 0;
commands = NULL;
report(out_hnd, "Exit Status: %s\n", get_nt_error_msg(status));
get_safe_nt_error_msg(status, msg, sizeof(msg));
report(out_hnd, "Exit Status: %s\n", msg);
return status;
}