Fix bugs in [v]snprintf usage
authorKen Raeburn <raeburn@permabit.com>
Wed, 30 Jan 2013 21:31:09 +0000 (22:31 +0100)
committerJens Axboe <axboe@kernel.dk>
Wed, 30 Jan 2013 21:31:09 +0000 (22:31 +0100)
When calling snprintf, supply the full buffer size instead of
one byte less.

When using the returned length from vsnprintf for logging, don't write
more than the actual buffer size (minus one for the trailing \0), in
case the formatted string was truncated.

Signed-off-by: Jens Axboe <axboe@kernel.dk>

No differences found