]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
use g_ascii_tolower instead of c_tolower from gnulib
authorPavel Hrdina <phrdina@redhat.com>
Mon, 18 Nov 2019 14:15:31 +0000 (15:15 +0100)
committerPavel Hrdina <phrdina@redhat.com>
Tue, 10 Dec 2019 12:49:24 +0000 (13:49 +0100)
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Reviewed-by: Cole Robinson <crobinso@redhat.com>
src/remote/remote_driver.c
src/util/virmacaddr.c
src/util/virutil.c
src/vmx/vmx.c
tools/virsh-domain.c
tools/vsh.c

index ddb95914a628076b9aa8b6947e2943ded5502c6c..e684fcba099aafa416503ea025fefcedfe070efd 100644 (file)
@@ -49,7 +49,6 @@
 #include "virauth.h"
 #include "virauthconfig.h"
 #include "virstring.h"
-#include "c-ctype.h"
 
 #define VIR_FROM_THIS VIR_FROM_REMOTE
 
@@ -225,7 +224,7 @@ static int remoteSplitURIScheme(virURIPtr uri,
 
         p = *transport;
         while (*p) {
-            *p = c_tolower(*p);
+            *p = g_ascii_tolower(*p);
             p++;
         }
     }
index a6893faf9a3d49192d94c02d7c40e17c827d487a..182bd582fb555f81fe303ffc94b22fb2a4b04d4c 100644 (file)
@@ -21,7 +21,6 @@
 #include <config.h>
 
 
-#include "c-ctype.h"
 #include "virmacaddr.h"
 #include "virrandom.h"
 #include "virutil.h"
@@ -42,8 +41,8 @@ virMacAddrCompare(const char *p, const char *q)
             ++p;
         while (*q == '0' && g_ascii_isxdigit(q[1]))
             ++q;
-        c = c_tolower(*p);
-        d = c_tolower(*q);
+        c = g_ascii_tolower(*p);
+        d = g_ascii_tolower(*q);
 
         if (c == 0 || d == 0)
             break;
index 12f44796c84db3463f52bb543dae538676372ce6..ed1f696e37eb43a01c11762cedb81f91493a9fad 100644 (file)
@@ -63,7 +63,6 @@
 # include <sys/un.h>
 #endif
 
-#include "c-ctype.h"
 #include "mgetgroups.h"
 #include "virerror.h"
 #include "virlog.h"
@@ -201,7 +200,7 @@ virScaleInteger(unsigned long long *value, const char *suffix,
 
         if (!suffix[1] || STRCASEEQ(suffix + 1, "iB")) {
             base = 1024;
-        } else if (c_tolower(suffix[1]) == 'b' && !suffix[2]) {
+        } else if (g_ascii_tolower(suffix[1]) == 'b' && !suffix[2]) {
             base = 1000;
         } else {
             virReportError(VIR_ERR_INVALID_ARG,
@@ -209,7 +208,7 @@ virScaleInteger(unsigned long long *value, const char *suffix,
             return -1;
         }
         scale = 1;
-        switch (c_tolower(*suffix)) {
+        switch (g_ascii_tolower(*suffix)) {
         case 'e':
             scale *= base;
             G_GNUC_FALLTHROUGH;
index 07ccae613d4ff89876cf43a7c8c3ceec1f82e633..2afb0b28233114fe9cdba95c24a355e906f00175 100644 (file)
@@ -22,8 +22,6 @@
 
 #include <config.h>
 
-#include <c-ctype.h>
-
 #include "internal.h"
 #include "virerror.h"
 #include "virfile.h"
@@ -1095,7 +1093,7 @@ virVMXHandleLegacySCSIDiskDriverName(virDomainDefPtr def,
     tmp = copy;
 
     for (; *tmp != '\0'; ++tmp)
-        *tmp = c_tolower(*tmp);
+        *tmp = g_ascii_tolower(*tmp);
 
     model = virDomainControllerModelSCSITypeFromString(copy);
     VIR_FREE(copy);
@@ -1977,7 +1975,7 @@ virVMXParseSCSIController(virConfPtr conf, int controller, bool *present,
         tmp = virtualDev_string;
 
         for (; *tmp != '\0'; ++tmp)
-            *tmp = c_tolower(*tmp);
+            *tmp = g_ascii_tolower(*tmp);
 
         *virtualDev = virVMXControllerModelSCSITypeFromString(virtualDev_string);
 
index 45b9bf8a381fb6ccad010f16373ac19f453e39c6..56137bdd740149163ce08898bceef6c40921c1fc 100644 (file)
@@ -35,7 +35,6 @@
 #include "internal.h"
 #include "virbitmap.h"
 #include "virbuffer.h"
-#include "c-ctype.h"
 #include "conf/domain_conf.h"
 #include "viralloc.h"
 #include "vircommand.h"
@@ -8844,7 +8843,7 @@ static int getSignalNumber(const char *signame)
     char *p = str;
 
     for (i = 0; signame[i]; i++)
-        p[i] = c_tolower(signame[i]);
+        p[i] = g_ascii_tolower(signame[i]);
 
     if (virStrToLong_i(p, NULL, 10, &signum) >= 0)
         return signum;
index beee1c2986316dcddd49b5d43aa1c30020bc09d4..6c78a7a373f087eff2e2e64b8833b8015875de12 100644 (file)
@@ -25,7 +25,6 @@
 #include <stdarg.h>
 #include <unistd.h>
 #include <sys/time.h>
-#include "c-ctype.h"
 #include <fcntl.h>
 #include <time.h>
 #include <sys/stat.h>
@@ -2343,7 +2342,7 @@ vshAskReedit(vshControl *ctl, const char *msg, bool relax_avail)
     while (true) {
         vshPrint(ctl, "\r%s %s %s: ", msg, _("Try again?"),
                  relax_avail ? "[y,n,i,f,?]" : "[y,n,f,?]");
-        c = c_tolower(getchar());
+        c = g_ascii_tolower(getchar());
 
         if (c == '?') {
             vshPrintRaw(ctl,