Use qemu_isfoobar and qemu_towombat versions, based on patch by Christoph Egger
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5774 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
11bb09f1be
commit
47398b9c36
@ -1485,7 +1485,7 @@ static int parse_short_name(BDRVVVFATState* s,
|
||||
if (direntry->name[i] <= ' ' || direntry->name[i] > 0x7f)
|
||||
return -1;
|
||||
else if (s->downcase_short_names)
|
||||
lfn->name[i] = tolower(direntry->name[i]);
|
||||
lfn->name[i] = qemu_tolower(direntry->name[i]);
|
||||
else
|
||||
lfn->name[i] = direntry->name[i];
|
||||
}
|
||||
@ -1498,7 +1498,7 @@ static int parse_short_name(BDRVVVFATState* s,
|
||||
if (direntry->extension[j] <= ' ' || direntry->extension[j] > 0x7f)
|
||||
return -2;
|
||||
else if (s->downcase_short_names)
|
||||
lfn->name[i + j] = tolower(direntry->extension[j]);
|
||||
lfn->name[i + j] = qemu_tolower(direntry->extension[j]);
|
||||
else
|
||||
lfn->name[i + j] = direntry->extension[j];
|
||||
}
|
||||
|
16
nbd.c
16
nbd.c
@ -314,14 +314,14 @@ int nbd_receive_negotiate(int csock, off_t *size, size_t *blocksize)
|
||||
*blocksize = 1024;
|
||||
|
||||
TRACE("Magic is %c%c%c%c%c%c%c%c",
|
||||
isprint(buf[0]) ? buf[0] : '.',
|
||||
isprint(buf[1]) ? buf[1] : '.',
|
||||
isprint(buf[2]) ? buf[2] : '.',
|
||||
isprint(buf[3]) ? buf[3] : '.',
|
||||
isprint(buf[4]) ? buf[4] : '.',
|
||||
isprint(buf[5]) ? buf[5] : '.',
|
||||
isprint(buf[6]) ? buf[6] : '.',
|
||||
isprint(buf[7]) ? buf[7] : '.');
|
||||
qemu_isprint(buf[0]) ? buf[0] : '.',
|
||||
qemu_isprint(buf[1]) ? buf[1] : '.',
|
||||
qemu_isprint(buf[2]) ? buf[2] : '.',
|
||||
qemu_isprint(buf[3]) ? buf[3] : '.',
|
||||
qemu_isprint(buf[4]) ? buf[4] : '.',
|
||||
qemu_isprint(buf[5]) ? buf[5] : '.',
|
||||
qemu_isprint(buf[6]) ? buf[6] : '.',
|
||||
qemu_isprint(buf[7]) ? buf[7] : '.');
|
||||
TRACE("Magic is 0x%" PRIx64, magic);
|
||||
TRACE("Size is %" PRIu64, *size);
|
||||
|
||||
|
2
net.c
2
net.c
@ -668,7 +668,7 @@ int tap_alloc(char *dev, size_t dev_size)
|
||||
|
||||
if( *dev ){
|
||||
ptr = dev;
|
||||
while( *ptr && !isdigit((int)*ptr) ) ptr++;
|
||||
while( *ptr && !qemu_isdigit((int)*ptr) ) ptr++;
|
||||
ppa = atoi(ptr);
|
||||
}
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include <unistd.h>
|
||||
|
||||
#include "qemu_socket.h"
|
||||
#include "qemu-common.h" /* for qemu_isdigit */
|
||||
|
||||
#ifndef AI_ADDRCONFIG
|
||||
# define AI_ADDRCONFIG 0
|
||||
@ -120,7 +121,7 @@ int inet_listen(const char *str, char *ostr, int olen,
|
||||
return -1;
|
||||
}
|
||||
ai.ai_family = PF_INET6;
|
||||
} else if (isdigit(str[0])) {
|
||||
} else if (qemu_isdigit(str[0])) {
|
||||
/* IPv4 addr */
|
||||
if (2 != sscanf(str,"%64[0-9.]:%32[^,]%n",addr,port,&pos)) {
|
||||
fprintf(stderr, "%s: ipv4 parse error (%s)\n",
|
||||
@ -244,7 +245,7 @@ int inet_connect(const char *str, int socktype)
|
||||
return -1;
|
||||
}
|
||||
ai.ai_family = PF_INET6;
|
||||
} else if (isdigit(str[0])) {
|
||||
} else if (qemu_isdigit(str[0])) {
|
||||
/* IPv4 addr */
|
||||
if (2 != sscanf(str,"%64[0-9.]:%32[^,]",addr,port)) {
|
||||
fprintf(stderr, "%s: ipv4 parse error (%s)\n",
|
||||
|
@ -1048,7 +1048,7 @@ static int get_tag_value(char *buf, int buf_size,
|
||||
if (!p)
|
||||
return -1;
|
||||
p += strlen(tag);
|
||||
while (isspace(*p))
|
||||
while (qemu_isspace(*p))
|
||||
p++;
|
||||
q = buf;
|
||||
while (*p != '\0' && !strchr(stopchars, *p)) {
|
||||
|
Loading…
Reference in New Issue
Block a user