mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Fixed stupid typo.
This commit is contained in:
parent
2e0ce7d97f
commit
86491ca816
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2009-06-25 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* estream.c (es_write_sanitized_utf8_buffer): Typo fix.
|
||||||
|
|
||||||
2009-06-24 Werner Koch <wk@g10code.com>
|
2009-06-24 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* estream.c (es_read_line): In the malloc error case, set
|
* estream.c (es_read_line): In the malloc error case, set
|
||||||
|
|
|
@ -3205,7 +3205,7 @@ es_write_sanitized_utf8_buffer (estream_t stream,
|
||||||
*bytes_written = strlen (buf);
|
*bytes_written = strlen (buf);
|
||||||
ret = es_fputs (buf, stream);
|
ret = es_fputs (buf, stream);
|
||||||
xfree (buf);
|
xfree (buf);
|
||||||
return rt == EOF? ret : (int)i;
|
return rc == EOF? ret : (int)i;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return es_write_sanitized (stream, p, length, delimiters, bytes_written);
|
return es_write_sanitized (stream, p, length, delimiters, bytes_written);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue