mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Replace use stdio by estream functions.
This commit is contained in:
parent
37088de63d
commit
943aaf0cba
13 changed files with 243 additions and 199 deletions
|
@ -1,3 +1,7 @@
|
|||
2010-03-08 Werner Koch <wk@g10code.com>
|
||||
|
||||
* no-libgcrypt.c (gcry_create_nonce): New.
|
||||
|
||||
2010-02-26 Werner Koch <wk@g10code.com>
|
||||
|
||||
* gpg-connect-agent.c (main): New option --tcp-socket.
|
||||
|
|
|
@ -142,3 +142,13 @@ gcry_set_log_handler (gcry_handler_log_t f, void *opaque)
|
|||
(void)f;
|
||||
(void)opaque;
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
gcry_create_nonce (void *buffer, size_t length)
|
||||
{
|
||||
(void)buffer;
|
||||
(void)length;
|
||||
|
||||
log_fatal ("unexpected call to gcry_create_nonce\n");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue