diff options
author | Werner Koch <[email protected]> | 2005-01-20 17:21:40 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2005-01-20 17:21:40 +0000 |
commit | b2b2786be1047e921fe50263915a565252a802ed (patch) | |
tree | ed076a7824239cba29acb3e4d3cda91a8a3d9d41 /g10/gpgv.c | |
parent | Minor changes (diff) | |
download | gnupg-b2b2786be1047e921fe50263915a565252a802ed.tar.gz gnupg-b2b2786be1047e921fe50263915a565252a802ed.zip |
* gpgv.c (tty_fprintf): New stub.
* card-util.c (card_status): Create asecret key stub on the fly
and print more information about a card key.
* import.c (pub_to_sec_keyblock, auto_create_card_key_stub): New.
* getkey.c (get_seckeyblock_byfprint): New.
* keylist.c (print_card_key_info): New.
Diffstat (limited to '')
-rw-r--r-- | g10/gpgv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/g10/gpgv.c b/g10/gpgv.c index 020b548bb..3e545cc9b 100644 --- a/g10/gpgv.c +++ b/g10/gpgv.c @@ -380,6 +380,7 @@ void rndlinux_constructor(void) {} /* Stubs to avoid linking to ../util/ttyio.c */ int tty_batchmode( int onoff ) { return 0; } void tty_printf( const char *fmt, ... ) { } +void tty_fprintf (FILE *fp, const char *fmt, ... ) { } void tty_print_string( const byte *p, size_t n ) { } void tty_print_utf8_string( const byte *p, size_t n ) {} void tty_print_utf8_string2( const byte *p, size_t n, size_t max_n ) {} |