From 4985a11f003b65e4212f6197ca0411e35514c1b0 Mon Sep 17 00:00:00 2001 From: Jim Warner Date: Sun, 2 Jan 2022 00:00:09 -0600 Subject: [PATCH] sysctl: eliminate some warnings of '-Wunused-variable' Signed-off-by: Jim Warner --- sysctl.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sysctl.c b/sysctl.c index 75636b79..aa970711 100644 --- a/sysctl.c +++ b/sysctl.c @@ -624,7 +624,6 @@ static SysctlSetting *parse_setting_line( const int linenum, char *line) { - SysctlSetting *s; char *key; char *value; bool glob_exclude = FALSE; @@ -680,7 +679,6 @@ static int write_setting_list(const SettingList *sl) continue; if (string_is_glob(node->path)) { - char *gl_path; glob_t globbuf; int i; @@ -726,11 +724,9 @@ static int pattern_match(const char *string, const char *pat) static int Preload(SettingList *setlist, const char *restrict const filename) { FILE *fp; - char *t; int n = 0; int rc = EXIT_SUCCESS; ssize_t rlen; - char *name, *value; glob_t globbuf; int globerr; int globflg; @@ -761,7 +757,6 @@ static int Preload(SettingList *setlist, const char *restrict const filename) } while ((rlen = getline(&iobuf, &iolen, fp)) > 0) { - size_t offset; SysctlSetting *setting; n++; -- 2.40.0