sasl_usercloak: fix typo in format string
thanks @ProgVal
This commit is contained in:
parent
cdeca37ec3
commit
b44f6669d8
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ check_new_user(void *vdata)
|
|||
|
||||
unsigned int hashval = fnv_hash_string(source_p->user->suser);
|
||||
hashval %= 100000000; // eight digits only please.
|
||||
snprintf(dst, 9, "%08ud", hashval);
|
||||
snprintf(dst, 9, "%08u", hashval);
|
||||
}
|
||||
|
||||
/* just in case */
|
||||
|
|
Loading…
Reference in a new issue