sysctl: eliminate some warnings of '-Wunused-variable'
Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
parent
7d8df62faa
commit
4985a11f00
5
sysctl.c
5
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++;
|
||||
|
Loading…
Reference in New Issue
Block a user