Skip to content
Snippets Groups Projects
Commit 05d1de6a authored by Russell Bryant's avatar Russell Bryant
Browse files

more pointer signedness cleanup

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37293 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 7828780b
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ struct srv {
unsigned short portnum;
} __attribute__ ((__packed__));
static int parse_srv(char *host, int hostlen, int *portno, char *answer, int len, char *msg)
static int parse_srv(char *host, int hostlen, int *portno, unsigned char *answer, int len, unsigned char *msg)
{
int res = 0;
struct srv *srv = (struct srv *)answer;
......@@ -75,7 +75,7 @@ static int parse_srv(char *host, int hostlen, int *portno, char *answer, int len
answer += sizeof(struct srv);
len -= sizeof(struct srv);
if ((res = dn_expand((unsigned char *)msg, (unsigned char *)answer + len, (unsigned char *)answer, repl, sizeof(repl) - 1)) < 0) {
if ((res = dn_expand(msg, answer + len, answer, repl, sizeof(repl) - 1)) < 0) {
ast_log(LOG_WARNING, "Failed to expand hostname\n");
return -1;
}
......@@ -99,7 +99,7 @@ struct srv_context {
int *port;
};
static int srv_callback(void *context, char *answer, int len, char *fullanswer)
static int srv_callback(void *context, unsigned char *answer, int len, unsigned char *fullanswer)
{
struct srv_context *c = (struct srv_context *)context;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment