1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-31 11:41:32 +01:00

Better implementation for the SRV check. We don't need to actually check

all the header files individually since the SRV test compile uses them
together.
This commit is contained in:
David Shaw 2004-12-29 00:58:05 +00:00
parent afe8ca4fbf
commit f539f3d2b2
3 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2004-12-28 David Shaw <dshaw@jabberwocky.com>
* srv.h: Better implementation for the SRV check. We don't need
to actually check all the header files individually since the SRV
test compile uses them together.
2004-12-20 Werner Koch <wk@g10code.com>
* strgutil.c (handle_iconv_error): Turn diagnostics into warnings

View File

@ -826,6 +826,7 @@ connect_server( const char *server, ushort port, unsigned int flags,
srvlist=m_alloc_clear(sizeof(struct srventry));
srvlist->port=port;
strncpy(srvlist->target,server,MAXDNAME);
srvlist->target[MAXDNAME-1]='\0';
srvcount=1;
}

View File

@ -21,15 +21,15 @@
#ifndef _SRV_H_
#define _SRV_H_
#ifdef USE_DNS_SRV
#ifdef _WIN32
#include <windows.h>
#else
#include <netinet/in.h>
#ifdef HAVE_ARPA_NAMESER_H
#include <arpa/nameser.h>
#endif
#include <resolv.h>
#endif
#endif /* !_WIN32 */
#endif /* USE_DNS_SRV */
#include "types.h"
#ifndef MAXDNAME