diff options
author | Jeremy Allison <jra@samba.org> | 2004-03-15 21:53:59 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2004-03-15 21:53:59 +0000 |
commit | 8613940ce69c488dc19fb0c3e434f8801511ec2d (patch) | |
tree | 94b9fb4a15f3a5931465e19e13179ba3c75db923 /source3/nmbd/nmbd_mynames.c | |
parent | b5805b04da06fe37db70ebba4bfa33d3c3f6a9cb (diff) | |
download | samba-8613940ce69c488dc19fb0c3e434f8801511ec2d.tar.gz samba-8613940ce69c488dc19fb0c3e434f8801511ec2d.tar.bz2 samba-8613940ce69c488dc19fb0c3e434f8801511ec2d.zip |
Use "unix netbios name" type unstring - 64 bytes long to manipulate netbios
names in nmbd. Allows conversion from dos codepage mb strings (ie. SJIS) to
expand to utf8 size on read.
Jeremy.
(This used to be commit b9da3e941d4233c2d3931f32767f3e51b214033e)
Diffstat (limited to 'source3/nmbd/nmbd_mynames.c')
-rw-r--r-- | source3/nmbd/nmbd_mynames.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_mynames.c b/source3/nmbd/nmbd_mynames.c index 83a8361ed9..07247d5495 100644 --- a/source3/nmbd/nmbd_mynames.c +++ b/source3/nmbd/nmbd_mynames.c @@ -93,7 +93,7 @@ static void insert_refresh_name_into_unicast( struct subnet_record *subrec, } if((namerec = find_name_on_subnet(unicast_subnet, nmbname, FIND_SELF_NAME)) == NULL) { - fstring name; + unstring name; pull_ascii_nstring(name, sizeof(name), nmbname->name); /* The name needs to be created on the unicast subnet. */ (void)add_name_to_subnet( unicast_subnet, name, |