diff options
author | Werner Koch <[email protected]> | 2009-06-25 14:10:14 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2009-06-25 14:10:14 +0000 |
commit | 86491ca816a22254db7e9d8fbaf447b0ef96c20b (patch) | |
tree | 376d49264666557936a674ab488461e642778f1f /common/estream.c | |
parent | Fixed a bunch of little bugs as reported by Fabian Keil. (diff) | |
download | gnupg-86491ca816a22254db7e9d8fbaf447b0ef96c20b.tar.gz gnupg-86491ca816a22254db7e9d8fbaf447b0ef96c20b.zip |
Fixed stupid typo.
Diffstat (limited to '')
-rw-r--r-- | common/estream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/estream.c b/common/estream.c index d3557750d..255070b58 100644 --- a/common/estream.c +++ b/common/estream.c @@ -3205,7 +3205,7 @@ es_write_sanitized_utf8_buffer (estream_t stream, *bytes_written = strlen (buf); ret = es_fputs (buf, stream); xfree (buf); - return rt == EOF? ret : (int)i; + return rc == EOF? ret : (int)i; } else return es_write_sanitized (stream, p, length, delimiters, bytes_written); |