diff options
author | Luke Leighton <lkcl@samba.org> | 1999-06-24 19:02:37 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-06-24 19:02:37 +0000 |
commit | f63e8070488e079c899cde90e8452796f3af4e5f (patch) | |
tree | 71911f988b79d2a019f04d50d082df58c55ee0c9 /source3/libsmb | |
parent | cae3620b2e8abbe35f0369a82d5461cb596475a3 (diff) | |
download | samba-f63e8070488e079c899cde90e8452796f3af4e5f.tar.gz samba-f63e8070488e079c899cde90e8452796f3af4e5f.tar.bz2 samba-f63e8070488e079c899cde90e8452796f3af4e5f.zip |
safe string version of nmb_namestr.
(This used to be commit 250621b3cec5fc463d348432d1d0ff5fb59e7a29)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/nmblib.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/source3/libsmb/nmblib.c b/source3/libsmb/nmblib.c index 14dc5ecee2..54b1779f44 100644 --- a/source3/libsmb/nmblib.c +++ b/source3/libsmb/nmblib.c @@ -287,6 +287,7 @@ static int put_nmb_name(char *buf,int offset,struct nmb_name *name) return(ret); } + /******************************************************************* useful for debugging messages ******************************************************************/ @@ -296,16 +297,24 @@ char *nmb_namestr(struct nmb_name *n) static fstring ret[4]; char *p = ret[i]; - if (!n->scope[0]) - slprintf(p,sizeof(fstring)-1, "%s<%02x>",n->name,n->name_type); - else - slprintf(p,sizeof(fstring)-1, "%s<%02x>.%s",n->name,n->name_type,n->scope); + nmb_safe_namestr(n, p, sizeof(fstring)); i = (i+1)%4; return(p); } /******************************************************************* + useful for debugging messages + ******************************************************************/ +void nmb_safe_namestr(struct nmb_name *n, char *str, size_t len) +{ + if (!n->scope[0]) + slprintf(str, len-1, "%s<%02x>",n->name,n->name_type); + else + slprintf(str, len-1, "%s<%02x>.%s",n->name,n->name_type,n->scope); +} + +/******************************************************************* allocate and parse some resource records ******************************************************************/ static BOOL parse_alloc_res_rec(char *inbuf,int *offset,int length, |