]> Kevux Git Server - fll/commitdiff
Bugfix: Replace index() with strchr().
authorKevin Day <Kevin@kevux.org>
Wed, 4 Sep 2024 03:21:53 +0000 (22:21 -0500)
committerKevin Day <Kevin@kevux.org>
Wed, 4 Sep 2024 03:21:53 +0000 (22:21 -0500)
The `index()` function is deprecated.
Use the `strchr()` function instead.

level_0/f_environment/c/environment.c

index 66bf895f1c809da7cf23ad623ce0b529a423c49f..7d09dde78c0db1d9ab69905639f1eb4231d867ff 100644 (file)
@@ -91,7 +91,7 @@ extern char **environ;
       map.name.used = 0;
       map.value.used = 0;
 
-      at = index(*string, f_string_ascii_equal_s.string[0]);
+      at = strchr(*string, f_string_ascii_equal_s.string[0]);
       if (!at || at == *string) continue;
 
       map.name.string = *string;