mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Use ADNS for PKA and SRV records if no other resolver is available.
This commit is contained in:
parent
49b00ffd67
commit
85d778b9f6
9 changed files with 359 additions and 186 deletions
|
@ -55,7 +55,10 @@ gcry_xmalloc (size_t n)
|
|||
char *
|
||||
gcry_strdup (const char *string)
|
||||
{
|
||||
return malloc (strlen (string)+1);
|
||||
char *p = malloc (strlen (string)+1);
|
||||
if (p)
|
||||
strcpy (p, string);
|
||||
return p;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue