]> granicus.if.org Git - zfs/commit
Fix -Werror=format-security compiler option
authorBrian Behlendorf <behlendorf1@llnl.gov>
Sat, 10 Jul 2010 19:36:16 +0000 (12:36 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Mon, 12 Jul 2010 17:11:48 +0000 (10:11 -0700)
commit007b891fc7c53e4e12e7a2920ee03ee12c78a6a2
tree1e914cd2b1199ad700749d0739769a583a156a27
parent3b54f5030e07f5ae8898ee190da7390ad1ceb33c
Fix -Werror=format-security compiler option

Noticed under Ubuntu kernel builds, there were two instances where
printf() was not called with a "%s" and instread directly printed
the string.  This can potentially result in a crash and is considered
bad form by gcc.  It has been fixed by adding the needed "%s".
cmd/zdb/zdb.c