mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
Put an 0x in front of a hex number.
(This used to be commit a48d480ce9
)
This commit is contained in:
@ -523,7 +523,7 @@ BOOL get_safe_nt_error_msg(uint32 nt_code,char *msg, size_t len)
|
|||||||
{
|
{
|
||||||
int idx = 0;
|
int idx = 0;
|
||||||
|
|
||||||
slprintf(msg, len-1, "NT code %08x", nt_code);
|
slprintf(msg, len-1, "NT code 0x%08x", nt_code);
|
||||||
|
|
||||||
while (nt_errs[idx].nt_errstr != NULL)
|
while (nt_errs[idx].nt_errstr != NULL)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user