plan9fox/sys
cinap_lenrek 797cc13c70 fix dangerous werrstr() usages
werrstr() takes a format string as its first argument.
a common error is to pass user controlled string buffers
into werrstr() that might contain format string escapes
causing werrstr() to take bogus arguments from the stack
and crash.

so instead of doing:
	werrstr(buf);

we want todo:
	werrstr("%s", buf);

or if we have a local ERRMAX sized buffer that we can override:
	errstr(buf, sizeof buf);
2014-11-07 12:51:59 +01:00
..
doc
games/lib fortunes: this exact error message is in the fortunes file. 2014-10-24 14:40:48 -04:00
include libsec: add diffie-hellman functions 2014-09-14 02:29:18 +02:00
lib dist: generate efi bootable cd image 2014-10-31 20:59:35 +01:00
man mouse(2): fix atomouse (thanks qrstuv) 2014-11-06 04:59:07 +01:00
src fix dangerous werrstr() usages 2014-11-07 12:51:59 +01:00