diff options
author | Neal H. Walfield <[email protected]> | 2015-09-02 08:30:59 +0000 |
---|---|---|
committer | Neal H. Walfield <[email protected]> | 2015-09-02 08:38:41 +0000 |
commit | 219de84df9a8408fffedbb2600f5eb4c441950b6 (patch) | |
tree | f62b7d8937a9e8b04698c2dfd2e852c2096f46c2 /common/t-iobuf.c | |
parent | iobuf: Add the IOBUF_INPUT_TEMP type to improve input temp handling. (diff) | |
download | gnupg-219de84df9a8408fffedbb2600f5eb4c441950b6.tar.gz gnupg-219de84df9a8408fffedbb2600f5eb4c441950b6.zip |
iobuf: Reduce verbosity of test.
* common/t-iobuf.c (main): Reduce verbosity.
--
Signed-off-by: Neal H. Walfield <[email protected]>.
Diffstat (limited to 'common/t-iobuf.c')
-rw-r--r-- | common/t-iobuf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/t-iobuf.c b/common/t-iobuf.c index 839798f0c..99581b9a8 100644 --- a/common/t-iobuf.c +++ b/common/t-iobuf.c @@ -335,11 +335,13 @@ main (int argc, char *argv[]) assert (rc == 0); n = iobuf_temp_to_buffer (iobuf, buffer, sizeof (buffer)); +#if 0 printf ("Got %d bytes\n", n); printf ("buffer: `"); fwrite (buffer, n, 1, stdout); fputc ('\'', stdout); fputc ('\n', stdout); +#endif assert (n == strlen (content) + 2 * (strlen (content2) + 1)); assert (strcmp (buffer, "0123456789aabbcc") == 0); |