2b45e011ca
When the series of commits is complete, things like https://cert.litnet.lt/en/docs/ntp-distributed-reflection-dos-attacks should be fixed. PR: bin/148836 (except that we import a newer version) Asked by: Too many MFC after: 2 weeks
21 lines
259 B
C
21 lines
259 B
C
/*
|
|
* uinttoa - return an asciized unsigned integer
|
|
*/
|
|
#include <stdio.h>
|
|
|
|
#include "lib_strbuf.h"
|
|
#include "ntp_stdlib.h"
|
|
|
|
char *
|
|
uinttoa(
|
|
u_long uval
|
|
)
|
|
{
|
|
register char *buf;
|
|
|
|
LIB_GETBUF(buf);
|
|
snprintf(buf, LIB_BUFLENGTH, "%lu", uval);
|
|
|
|
return buf;
|
|
}
|