mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
util: drop const_int_one/const_int_zero again
There's only a single user remaining now that we have setsockopt_int(),
let's define those variables locally.
This more or less reverts 6d5e65f645.
This commit is contained in:
@@ -51,9 +51,6 @@ int saved_argc = 0;
|
||||
char **saved_argv = NULL;
|
||||
static int saved_in_initrd = -1;
|
||||
|
||||
const int const_int_zero = 0;
|
||||
const int const_int_one = 1;
|
||||
|
||||
size_t page_size(void) {
|
||||
static thread_local size_t pgsz = 0;
|
||||
long r;
|
||||
|
||||
@@ -232,6 +232,3 @@ int version(void);
|
||||
int str_verscmp(const char *s1, const char *s2);
|
||||
|
||||
void disable_coredumps(void);
|
||||
|
||||
extern const int const_int_zero;
|
||||
extern const int const_int_one;
|
||||
|
||||
@@ -1392,12 +1392,14 @@ static void add_rule(struct udev_rules *rules, char *line,
|
||||
rule_add_key(&rule_tmp, TK_A_DB_PERSIST, op, NULL, NULL);
|
||||
|
||||
pos = strstr(value, "nowatch");
|
||||
if (pos)
|
||||
rule_add_key(&rule_tmp, TK_A_INOTIFY_WATCH, op, NULL, &const_int_zero);
|
||||
else {
|
||||
if (pos) {
|
||||
static const int zero = 0;
|
||||
rule_add_key(&rule_tmp, TK_A_INOTIFY_WATCH, op, NULL, &zero);
|
||||
} else {
|
||||
static const int one = 1;
|
||||
pos = strstr(value, "watch");
|
||||
if (pos)
|
||||
rule_add_key(&rule_tmp, TK_A_INOTIFY_WATCH, op, NULL, &const_int_one);
|
||||
rule_add_key(&rule_tmp, TK_A_INOTIFY_WATCH, op, NULL, &one);
|
||||
}
|
||||
|
||||
pos = strstr(value, "static_node=");
|
||||
|
||||
Reference in New Issue
Block a user