mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-11 21:48:50 +01:00
Fixed stupid typo.
This commit is contained in:
parent
2e0ce7d97f
commit
86491ca816
@ -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…
Reference in New Issue
Block a user