mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
* srv.h, srv.c (getsrv): Use unsigned char rather than char. Noted by
Stefan Bellon.
This commit is contained in:
parent
2c717d9038
commit
1995efc728
2 changed files with 8 additions and 6 deletions
|
@ -31,11 +31,11 @@
|
|||
|
||||
struct srventry
|
||||
{
|
||||
uint16_t priority;
|
||||
uint16_t weight;
|
||||
uint16_t port;
|
||||
u16 priority;
|
||||
u16 weight;
|
||||
u16 port;
|
||||
int run_count;
|
||||
char target[MAXDNAME];
|
||||
unsigned char target[MAXDNAME];
|
||||
};
|
||||
|
||||
int getsrv(const char *name,struct srventry **list);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue