cdesktopenv/cde/programs/dtterm
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
..
tests Add GNU LGPL headers to all .c .C and .h files 2012-03-10 18:58:32 +00:00
util Use a more robust idiom When converting sprintf() to snprintf() 2012-08-09 11:52:17 -06:00
DtTermLogit.c Add GNU LGPL headers to all .c .C and .h files 2012-03-10 18:58:32 +00:00
DtTermLogit.h Add GNU LGPL headers to all .c .C and .h files 2012-03-10 18:58:32 +00:00
DtTermMain.c Add GNU LGPL headers to all .c .C and .h files 2012-03-10 18:58:32 +00:00
DtTermMain.h Add GNU LGPL headers to all .c .C and .h files 2012-03-10 18:58:32 +00:00
DtTermServer.c Add GNU LGPL headers to all .c .C and .h files 2012-03-10 18:58:32 +00:00
DtTermServer.h Add GNU LGPL headers to all .c .C and .h files 2012-03-10 18:58:32 +00:00
DtTermSyntax.c Add GNU LGPL headers to all .c .C and .h files 2012-03-10 18:58:32 +00:00
DtTermSyntax.h Add GNU LGPL headers to all .c .C and .h files 2012-03-10 18:58:32 +00:00
Dtterm.ad.src Initial import of the CDE 2.1.30 sources from the Open Group. 2012-03-10 18:21:40 +00:00
Imakefile Remove hardcoded CCLINK's in Imakefiles when linking with C++ built libs (DtSvc). 2012-06-19 16:27:20 -06:00
dtterm.1 Initial import of the CDE 2.1.30 sources from the Open Group. 2012-03-10 18:21:40 +00:00
dtterm.5 Initial import of the CDE 2.1.30 sources from the Open Group. 2012-03-10 18:21:40 +00:00
dtterm.msg Initial import of the CDE 2.1.30 sources from the Open Group. 2012-03-10 18:21:40 +00:00
dtterm_main.c Add GNU LGPL headers to all .c .C and .h files 2012-03-10 18:58:32 +00:00
flags Initial import of the CDE 2.1.30 sources from the Open Group. 2012-03-10 18:21:40 +00:00
mkfallbk Initial import of the CDE 2.1.30 sources from the Open Group. 2012-03-10 18:21:40 +00:00
sunDtTermServer.c Add GNU LGPL headers to all .c .C and .h files 2012-03-10 18:58:32 +00:00
terminfoChecklist Initial import of the CDE 2.1.30 sources from the Open Group. 2012-03-10 18:21:40 +00:00
terminfoCreate Initial import of the CDE 2.1.30 sources from the Open Group. 2012-03-10 18:21:40 +00:00