1
0
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:
Stefan Metzmacher
2004-06-01 08:12:45 +00:00
committed by Gerald (Jerry) Carter
parent 72d9c70fdd
commit 18062d2ed9
35 changed files with 89 additions and 89 deletions

View File

@@ -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 );
}