diff options
author | Tim Potter <tpot@samba.org> | 2001-06-26 06:26:05 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-06-26 06:26:05 +0000 |
commit | a48d480ce986ff1c00f2c17f30f23723ce0bb044 (patch) | |
tree | 79a3722f8a6516b7e98c9d1784cc891e1f522d85 /source | |
parent | 89eaaafe7d266788609fab6951fd912c441b3a26 (diff) | |
download | samba-a48d480ce986ff1c00f2c17f30f23723ce0bb044.tar.gz samba-a48d480ce986ff1c00f2c17f30f23723ce0bb044.tar.xz samba-a48d480ce986ff1c00f2c17f30f23723ce0bb044.zip |
Put an 0x in front of a hex number.
Diffstat (limited to 'source')
-rw-r--r-- | source/libsmb/nterr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libsmb/nterr.c b/source/libsmb/nterr.c index 17bb825219f..36dd65cda21 100644 --- a/source/libsmb/nterr.c +++ b/source/libsmb/nterr.c @@ -523,7 +523,7 @@ BOOL get_safe_nt_error_msg(uint32 nt_code,char *msg, size_t len) { 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) { |