mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
See ChangeLog: Mon Sep 18 12:13:52 CEST 2000 Werner Koch
This commit is contained in:
parent
8f45e56ad9
commit
fe88f35c40
5 changed files with 34 additions and 13 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Sep 18 12:13:52 CEST 2000 Werner Koch <wk@openit.de>
|
||||
|
||||
* hkp.c (not_implemented): Print a notice for W32
|
||||
|
||||
Fri Sep 15 18:40:36 CEST 2000 Werner Koch <wk@openit.de>
|
||||
|
||||
* keygen.c (keygen_add_std_prefs): Changed order of preferences to
|
||||
|
|
12
g10/hkp.c
12
g10/hkp.c
|
@ -38,6 +38,15 @@
|
|||
static int urlencode_filter( void *opaque, int control,
|
||||
IOBUF a, byte *buf, size_t *ret_len);
|
||||
|
||||
#ifdef HAVE_DOSISH_SYSTEM
|
||||
static void
|
||||
not_implemented(void)
|
||||
{
|
||||
log_error("keyserver access ist not yet available for MS-Windows\n");
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
/****************
|
||||
* Try to import the key with KEYID from a keyserver but ask the user
|
||||
* before doing so.
|
||||
|
@ -50,6 +59,7 @@ int
|
|||
hkp_ask_import( u32 *keyid )
|
||||
{
|
||||
#ifdef HAVE_DOSISH_SYSTEM
|
||||
not_implemented();
|
||||
return -1;
|
||||
#else
|
||||
struct http_context hd;
|
||||
|
@ -92,6 +102,7 @@ int
|
|||
hkp_import( STRLIST users )
|
||||
{
|
||||
#ifdef HAVE_DOSISH_SYSTEM
|
||||
not_implemented();
|
||||
return -1;
|
||||
#else
|
||||
if( !opt.keyserver_name ) {
|
||||
|
@ -122,6 +133,7 @@ int
|
|||
hkp_export( STRLIST users )
|
||||
{
|
||||
#ifdef HAVE_DOSISH_SYSTEM
|
||||
not_implemented();
|
||||
return -1;
|
||||
#else
|
||||
int rc;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue