Searched defs:utmpsize (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.comsat.c74 unsigned utmpsize = 0; /* last malloced size for utmp */ variable
229 if (statbf.st_size > utmpsize) {
230 utmpsize = statbf.st_size + 10 * sizeof (struct utmpx);
232 utmp = (struct utmpx *)realloc(utmp, utmpsize);
234 utmp = (struct utmpx *)malloc(utmpsize);

Completed in 44 milliseconds