From: Brian Behlendorf Date: Thu, 26 Aug 2010 16:52:40 +0000 (-0700) Subject: Fix gcc fortify source warnings X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=commitdiff_plain;h=0e5b68e0159e071dae2cac01c2b6783b8e926133;hp=0e5b68e0159e071dae2cac01c2b6783b8e926133;p=zfs.git Fix gcc fortify source warnings Resolve issues uncovered by -D_FORTIFY_SOURCE=2, the default redhat macro's file adds this option to the cflags. This causes warnings of the following type designed to keep the developer honest: warning: ignoring return value of 'foo', declared with attribute warn_unused_result The short term fix is to wrap these calls in VERIFY() to check the return code. The code was already assusing these would never fail. Signed-off-by: Brian Behlendorf ---