mirror of
https://github.com/samba-team/samba.git
synced 2025-11-18 00:23:50 +03:00
r960: convert 'unsigned int' to uint_t in the most places
metze
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
72d9c70fdd
commit
18062d2ed9
@@ -812,7 +812,7 @@ void make_nmb_name( struct nmb_name *n, const char *name, int type)
|
||||
{
|
||||
memset( (char *)n, '\0', sizeof(struct nmb_name) );
|
||||
push_ascii(n->name, name, 16, STR_TERMINATE|STR_UPPER);
|
||||
n->name_type = (unsigned int)type & 0xFF;
|
||||
n->name_type = (uint_t)type & 0xFF;
|
||||
StrnCpy( n->scope, lp_netbios_scope(), 63 );
|
||||
strupper( n->scope );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user