mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
filetype support for RISC OS
This commit is contained in:
parent
875363153e
commit
191795d14b
13 changed files with 153 additions and 35 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-10-28 Stefan Bellon <sbellon@sbellon.de>
|
||||
|
||||
* gpgkeys_hkp.c: Tidied up RISC OS initializations.
|
||||
|
||||
2002-10-24 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* gpgkeys_hkp.c (main), gpgkeys_ldap.c (main): Add -V flag to
|
||||
|
@ -27,6 +31,10 @@
|
|||
* gpgkeys_hkp.c (get_key): Properly respond with KEY FAILED (to
|
||||
gpg) and "key not found" (to user) on failure.
|
||||
|
||||
2002-09-12 Stefan Bellon <sbellon@sbellon.de>
|
||||
|
||||
* gpgkeys_hkp.c: Tidied up RISC OS initializations.
|
||||
|
||||
2002-09-09 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* gpgkeys_hkp.c (send_key, get_key, search_key): Check return
|
||||
|
|
|
@ -46,6 +46,10 @@ struct keylist
|
|||
struct keylist *next;
|
||||
};
|
||||
|
||||
#ifdef __riscos__
|
||||
RISCOS_GLOBAL_STATICS("HKP Keyfetcher Heap")
|
||||
#endif /* __riscos__ */
|
||||
|
||||
static int
|
||||
urlencode_filter( void *opaque, int control,
|
||||
IOBUF a, byte *buf, size_t *ret_len)
|
||||
|
@ -649,6 +653,10 @@ int main(int argc,char *argv[])
|
|||
int failed=0;
|
||||
struct keylist *keylist=NULL,*keyptr=NULL;
|
||||
|
||||
#ifdef __riscos__
|
||||
riscos_global_defaults();
|
||||
#endif
|
||||
|
||||
console=stderr;
|
||||
|
||||
fprintf(console,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue