mirror of
https://github.com/samba-team/samba.git
synced 2025-11-18 00:23:50 +03:00
r17849: Next round for RPC-SAMBA3-SHARESEC
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
bb39360370
commit
e17371b7f9
@@ -589,11 +589,11 @@ static size_t dopr(char *buffer, size_t maxlen, const char *format, va_list args
|
||||
if (cnk->cflags == DP_C_SHORT)
|
||||
cnk->value = va_arg (args, unsigned int);
|
||||
else if (cnk->cflags == DP_C_LONG)
|
||||
cnk->value = (long)va_arg (args, unsigned long int);
|
||||
cnk->value = (unsigned long)va_arg (args, unsigned long int);
|
||||
else if (cnk->cflags == DP_C_LLONG)
|
||||
cnk->value = (LLONG)va_arg (args, unsigned LLONG);
|
||||
else
|
||||
cnk->value = (long)va_arg (args, unsigned int);
|
||||
cnk->value = (unsigned long)va_arg (args, unsigned int);
|
||||
|
||||
for (i = 1; i < clist[pnum].num; i++) {
|
||||
clist[pnum].chunks[i]->value = cnk->value;
|
||||
|
||||
Reference in New Issue
Block a user