cdesktopenv/cde/programs/dtterm/util
Marc Balmer bb21797684 Use a more robust idiom When converting sprintf() to snprintf()
don't use the idiom

char foo[BUFSIZ];
snprintf(foo, BUFSIZ, ....);

but

char foo[BUFSIZ];
snprintf(foo, sizeo foo, ....);

because this will automatically catch situations where the size of foo
is later changed, e.g. like  foo[BUFSIZ + 8];

Fix another use of sprintf.
2012-08-09 11:52:17 -06:00
..
Imakefile Initial import of the CDE 2.1.30 sources from the Open Group. 2012-03-10 18:21:40 +00:00
logger.c Use a more robust idiom When converting sprintf() to snprintf() 2012-08-09 11:52:17 -06:00