summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--udev_config.c8
-rw-r--r--udev_device.c2
-rw-r--r--udev_rules.c4
-rw-r--r--udev_utils.h2
-rw-r--r--udev_utils_string.c2
5 files changed, 9 insertions, 9 deletions
diff --git a/udev_config.c b/udev_config.c
index f0b409b067..b8c4ffc8ed 100644
--- a/udev_config.c
+++ b/udev_config.c
@@ -149,19 +149,19 @@ static int parse_config_file(void)
if (strcasecmp(variable, "udev_root") == 0) {
strlcpy(udev_root, value, sizeof(udev_root));
- remove_trailing_char(udev_root, '/');
+ remove_trailing_chars(udev_root, '/');
continue;
}
if (strcasecmp(variable, "udev_db") == 0) {
strlcpy(udev_db_path, value, sizeof(udev_db_path));
- remove_trailing_char(udev_db_path, '/');
+ remove_trailing_chars(udev_db_path, '/');
continue;
}
if (strcasecmp(variable, "udev_rules") == 0) {
strlcpy(udev_rules_filename, value, sizeof(udev_rules_filename));
- remove_trailing_char(udev_rules_filename, '/');
+ remove_trailing_chars(udev_rules_filename, '/');
continue;
}
@@ -195,7 +195,7 @@ void udev_init_config(void)
env = getenv("UDEV_CONFIG_FILE");
if (env) {
strlcpy(udev_config_filename, env, sizeof(udev_config_filename));
- remove_trailing_char(udev_config_filename, '/');
+ remove_trailing_chars(udev_config_filename, '/');
}
parse_config_file();
diff --git a/udev_device.c b/udev_device.c
index db72d3007d..ad6f706366 100644
--- a/udev_device.c
+++ b/udev_device.c
@@ -58,7 +58,7 @@ int udev_init_device(struct udevice *udev, const char* devpath, const char *subs
if (devpath) {
strlcpy(udev->devpath, devpath, sizeof(udev->devpath));
- remove_trailing_char(udev->devpath, '/');
+ remove_trailing_chars(udev->devpath, '/');
if (strncmp(udev->devpath, "/block/", 7) == 0)
udev->type = DEV_BLOCK;
diff --git a/udev_rules.c b/udev_rules.c
index c1482c34b5..459c27b4d5 100644
--- a/udev_rules.c
+++ b/udev_rules.c
@@ -326,7 +326,7 @@ static int find_sysfs_attribute(struct sysfs_class_device *class_dev, struct sys
attr_found:
strlcpy(value, tmpattr->value, len);
- remove_trailing_char(value, '\n');
+ remove_trailing_chars(value, '\n');
dbg("found attribute '%s'", tmpattr->path);
return 0;
@@ -818,7 +818,7 @@ try_parent:
int count;
dbg("PROGRAM matches");
- remove_trailing_char(result, '\n');
+ remove_trailing_chars(result, '\n');
count = replace_untrusted_chars(result);
if (count)
info("%i untrusted character(s) replaced" , count);
diff --git a/udev_utils.h b/udev_utils.h
index 9ff79113b1..ea39a028f5 100644
--- a/udev_utils.h
+++ b/udev_utils.h
@@ -46,7 +46,7 @@ extern int add_matching_files(struct list_head *name_list, const char *dirname,
/* udev_utils_string.c */
extern int strcmp_pattern(const char *p, const char *s);
extern int string_is_true(const char *str);
-extern void remove_trailing_char(char *path, char c);
+extern void remove_trailing_chars(char *path, char c);
extern int utf8_encoded_valid_unichar(const char *str);
extern int replace_untrusted_chars(char *str);
diff --git a/udev_utils_string.c b/udev_utils_string.c
index bb5677d46e..37db8dbc85 100644
--- a/udev_utils_string.c
+++ b/udev_utils_string.c
@@ -100,7 +100,7 @@ int string_is_true(const char *str)
return 0;
}
-void remove_trailing_char(char *path, char c)
+void remove_trailing_chars(char *path, char c)
{
size_t len;