From 5434d5f7e94c34acf51f2554f7064ff58a12b8dd Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Thu, 17 Apr 2008 18:56:55 +0000 Subject: [PATCH] corrected variable name --- src/openac/openac.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openac/openac.c b/src/openac/openac.c index 61c3b05da..d0d20b108 100755 --- a/src/openac/openac.c +++ b/src/openac/openac.c @@ -542,9 +542,9 @@ int main(int argc, char **argv) /* write the attribute certificate to file */ attr_chunk = attr_cert->get_encoding(attr_cert); - if (chunk_write(attr_chunk, outfile, "attribute cert", 0022, TRUE)) + if (chunk_write(attr_chunk, outfile, 0022, TRUE)) { - DBG1(" wrote attribute cert file '%s' (%u bytes)", outfile, chunk.len); + DBG1(" wrote attribute cert file '%s' (%u bytes)", outfile, attr_chunk.len); write_serial(serial); status = 0; }