summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2021-01-27 15:12:06 +0100
committerBenBE <BenBE@geshi.org>2021-01-30 14:21:26 +0100
commit69efa94f9f44e00cea3e2d68a83717c0632d68fa (patch)
tree36b720f78ed31df30f3cff60ca278162a4f5bd65
parent04cf590967c7563972f89f02fd6fa52e13b9e9d9 (diff)
Use String_eq wrapper instead of raw strcmp
-rw-r--r--dragonflybsd/DragonFlyBSDProcessList.c2
-rw-r--r--linux/SystemdMeter.c2
-rw-r--r--openbsd/Platform.c2
-rw-r--r--solaris/Platform.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/dragonflybsd/DragonFlyBSDProcessList.c b/dragonflybsd/DragonFlyBSDProcessList.c
index edf2c863..976dbea0 100644
--- a/dragonflybsd/DragonFlyBSDProcessList.c
+++ b/dragonflybsd/DragonFlyBSDProcessList.c
@@ -434,7 +434,7 @@ void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate) {
if (proc->percent_cpu > 0.1) {
// system idle process should own all CPU time left regardless of CPU count
- if ( strcmp("idle", kproc->kp_comm) == 0 ) {
+ if (String_eq("idle", kproc->kp_comm)) {
isIdleProcess = true;
}
}
diff --git a/linux/SystemdMeter.c b/linux/SystemdMeter.c
index f6dcb3fb..54abbe50 100644
--- a/linux/SystemdMeter.c
+++ b/linux/SystemdMeter.c
@@ -303,7 +303,7 @@ static int valueDigitColor(unsigned int value) {
static void SystemdMeter_display(ATTR_UNUSED const Object* cast, RichString* out) {
char buffer[16];
- int color = (systemState && 0 == strcmp(systemState, "running")) ? METER_VALUE_OK : METER_VALUE_ERROR;
+ int color = (systemState && String_eq(systemState, "running")) ? METER_VALUE_OK : METER_VALUE_ERROR;
RichString_writeAscii(out, CRT_colors[color], systemState ? systemState : "N/A");
RichString_appendAscii(out, CRT_colors[METER_TEXT], " (");
diff --git a/openbsd/Platform.c b/openbsd/Platform.c
index e3a14894..84a5e3d0 100644
--- a/openbsd/Platform.c
+++ b/openbsd/Platform.c
@@ -302,7 +302,7 @@ static bool findDevice(const char* name, int* mib, struct sensordev* snsrdev, si
if (errno == ENOENT)
return false;
}
- if (strcmp(name, snsrdev->xname) == 0) {
+ if (String_eq(name, snsrdev->xname)) {
return true;
}
}
diff --git a/solaris/Platform.c b/solaris/Platform.c
index 45f16238..b3c83312 100644
--- a/solaris/Platform.c
+++ b/solaris/Platform.c
@@ -138,7 +138,7 @@ int Platform_getUptime() {
struct utmpx* ent;
while (( ent = getutxent() )) {
- if ( !strcmp("system boot", ent->ut_line )) {
+ if ( String_eq("system boot", ent->ut_line )) {
boot_time = ent->ut_tv.tv_sec;
}
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy