2015-10-15 10:25:28 +02:00

38 lines
574 B
C

/* $NetBSD: modetoa.c,v 1.7 2015/07/10 14:20:32 christos Exp $ */
/*
* modetoa - return an asciized mode
*/
#include <config.h>
#include <stdio.h>
#include "lib_strbuf.h"
#include "ntp_stdlib.h"
const char *
modetoa(
size_t mode
)
{
char *bp;
static const char * const modestrings[] = {
"unspec",
"sym_active",
"sym_passive",
"client",
"server",
"broadcast",
"control",
"private",
"bclient",
};
if (mode >= COUNTOF(modestrings)) {
LIB_GETBUF(bp);
snprintf(bp, LIB_BUFLENGTH, "mode#%zu", mode);
return bp;
}
return modestrings[mode];
}