28d3ae407e
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/device-mapper-multipath.git#26a2cd7a3e189bf91263d17bc8a8c449cc043fb0
99 lines
3.1 KiB
Diff
99 lines
3.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Martin Wilck <mwilck@suse.com>
|
|
Date: Wed, 16 Sep 2020 12:02:01 +0200
|
|
Subject: [PATCH] libmultipath: constify file argument in config parser
|
|
|
|
Reviewed-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
---
|
|
libmultipath/config.c | 3 +--
|
|
libmultipath/config.h | 2 +-
|
|
libmultipath/parser.c | 9 +++++----
|
|
libmultipath/parser.h | 2 +-
|
|
4 files changed, 8 insertions(+), 8 deletions(-)
|
|
|
|
diff --git a/libmultipath/config.c b/libmultipath/config.c
|
|
index df0f8f45..5c91a09d 100644
|
|
--- a/libmultipath/config.c
|
|
+++ b/libmultipath/config.c
|
|
@@ -719,8 +719,7 @@ static void set_max_checkint_from_watchdog(struct config *conf)
|
|
}
|
|
#endif
|
|
|
|
-struct config *
|
|
-load_config (char * file)
|
|
+struct config *load_config(const char *file)
|
|
{
|
|
struct config *conf = alloc_config();
|
|
|
|
diff --git a/libmultipath/config.h b/libmultipath/config.h
|
|
index 7af19844..ace403b8 100644
|
|
--- a/libmultipath/config.h
|
|
+++ b/libmultipath/config.h
|
|
@@ -251,7 +251,7 @@ void free_mptable (vector mptable);
|
|
|
|
int store_hwe (vector hwtable, struct hwentry *);
|
|
|
|
-struct config *load_config (char * file);
|
|
+struct config *load_config (const char *file);
|
|
struct config * alloc_config (void);
|
|
void free_config (struct config * conf);
|
|
extern struct config *get_multipath_config(void);
|
|
diff --git a/libmultipath/parser.c b/libmultipath/parser.c
|
|
index ed6d5d6d..163ffbc9 100644
|
|
--- a/libmultipath/parser.c
|
|
+++ b/libmultipath/parser.c
|
|
@@ -390,7 +390,7 @@ oom:
|
|
/* non-recursive configuration stream handler */
|
|
static int kw_level = 0;
|
|
|
|
-int warn_on_duplicates(vector uniques, char *str, char *file)
|
|
+int warn_on_duplicates(vector uniques, char *str, const char *file)
|
|
{
|
|
char *tmp;
|
|
int i;
|
|
@@ -434,7 +434,7 @@ is_sublevel_keyword(char *str)
|
|
}
|
|
|
|
int
|
|
-validate_config_strvec(vector strvec, char *file)
|
|
+validate_config_strvec(vector strvec, const char *file)
|
|
{
|
|
char *str = NULL;
|
|
int i;
|
|
@@ -499,7 +499,8 @@ validate_config_strvec(vector strvec, char *file)
|
|
}
|
|
|
|
static int
|
|
-process_stream(struct config *conf, FILE *stream, vector keywords, char *file)
|
|
+process_stream(struct config *conf, FILE *stream, vector keywords,
|
|
+ const char *file)
|
|
{
|
|
int i;
|
|
int r = 0, t;
|
|
@@ -584,7 +585,7 @@ out:
|
|
|
|
/* Data initialization */
|
|
int
|
|
-process_file(struct config *conf, char *file)
|
|
+process_file(struct config *conf, const char *file)
|
|
{
|
|
int r;
|
|
FILE *stream;
|
|
diff --git a/libmultipath/parser.h b/libmultipath/parser.h
|
|
index 62906e98..06666ccf 100644
|
|
--- a/libmultipath/parser.h
|
|
+++ b/libmultipath/parser.h
|
|
@@ -77,7 +77,7 @@ extern void dump_keywords(vector keydump, int level);
|
|
extern void free_keywords(vector keywords);
|
|
extern vector alloc_strvec(char *string);
|
|
extern void *set_value(vector strvec);
|
|
-extern int process_file(struct config *conf, char *conf_file);
|
|
+extern int process_file(struct config *conf, const char *conf_file);
|
|
extern struct keyword * find_keyword(vector keywords, vector v, char * name);
|
|
int snprint_keyword(char *buff, int len, char *fmt, struct keyword *kw,
|
|
const void *data);
|
|
--
|
|
2.17.2
|
|
|