summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2014-05-28 01:18:19 +0200
committerGuillem Jover <guillem@debian.org>2014-05-28 01:18:19 +0200
commit9251c6e31b96a784db2f53784c921ec206efd8a3 (patch)
tree2e38234199d940a9ad31fa16727854505f968b9e /lib
parentb22d8a95e38e187cf0e4e870cb892b42cca57ebd (diff)
downloaddpkg-9251c6e31b96a784db2f53784c921ec206efd8a3.tar.gz
libdpkg: Uppercase trig_options enum values
Diffstat (limited to 'lib')
-rw-r--r--lib/dpkg/triglib.c20
-rw-r--r--lib/dpkg/triglib.h5
2 files changed, 13 insertions, 12 deletions
diff --git a/lib/dpkg/triglib.c b/lib/dpkg/triglib.c
index b04a7b8d2..8d9d603c2 100644
--- a/lib/dpkg/triglib.c
+++ b/lib/dpkg/triglib.c
@@ -344,7 +344,7 @@ trk_explicit_interest_change(const char *trig, struct pkginfo *pkg,
if (signum > 0) {
fprintf(file->fp, "%s%s\n",
pkgbin_name(pkg, pkgbin, pnaw_nonambig),
- (opts == trig_noawait) ? "/noawait" : "");
+ (opts == TRIG_NOAWAIT) ? "/noawait" : "");
empty = false;
}
@@ -459,7 +459,7 @@ trig_file_interests_update(void)
for (tfi = filetriggers.head; tfi; tfi = tfi->inoverall.next)
fprintf(file->fp, "%s %s%s\n", trigh.namenode_name(tfi->fnn),
pkgbin_name(tfi->pkg, tfi->pkgbin, pnaw_nonambig),
- (tfi->options == trig_noawait) ? "/noawait" : "");
+ (tfi->options == TRIG_NOAWAIT) ? "/noawait" : "");
atomic_file_sync(file);
atomic_file_close(file);
@@ -506,7 +506,7 @@ trig_file_interests_ensure(void)
while (fgets_checked(linebuf, sizeof(linebuf), f, triggersfilefile) >= 0) {
struct dpkg_error err;
char *slash;
- enum trig_options trig_opts = trig_await;
+ enum trig_options trig_opts = TRIG_AWAIT;
space = strchr(linebuf, ' ');
if (!space || linebuf[0] != '/')
ohshit(_("syntax error in file triggers file `%.250s'"),
@@ -515,7 +515,7 @@ trig_file_interests_ensure(void)
slash = strchr(space, '/');
if (slash && strcmp("/noawait", slash) == 0) {
- trig_opts = trig_noawait;
+ trig_opts = TRIG_NOAWAIT;
*slash = '\0';
}
@@ -549,7 +549,7 @@ trig_file_activate(struct filenamenode *trig, struct pkginfo *aw)
for (tfi = *trigh.namenode_interested(trig); tfi;
tfi = tfi->samefile_next)
- trig_record_activation(tfi->pkg, (tfi->options == trig_noawait) ?
+ trig_record_activation(tfi->pkg, (tfi->options == TRIG_NOAWAIT) ?
NULL : aw, trigh.namenode_name(trig));
}
@@ -647,7 +647,7 @@ trig_cicb_statuschange_activate(const char *trig, struct pkginfo *pkg,
struct pkginfo *aw = pkg;
trig_activate_start(trig);
- dtki->activate_awaiter((opts == trig_noawait) ? NULL : aw);
+ dtki->activate_awaiter((opts == TRIG_NOAWAIT) ? NULL : aw);
dtki->activate_done();
}
@@ -700,13 +700,13 @@ trig_parse_ci(const char *file, trig_parse_cicb *interest,
while (cisspace(*spc))
spc++;
if (strcmp(cmd, "interest") == 0) {
- parse_ci_call(file, cmd, interest, spc, pkg, pkgbin, trig_await);
+ parse_ci_call(file, cmd, interest, spc, pkg, pkgbin, TRIG_AWAIT);
} else if (strcmp(cmd, "interest-noawait") == 0) {
- parse_ci_call(file, cmd, interest, spc, pkg, pkgbin, trig_noawait);
+ parse_ci_call(file, cmd, interest, spc, pkg, pkgbin, TRIG_NOAWAIT);
} else if (strcmp(cmd, "activate") == 0) {
- parse_ci_call(file, cmd, activate, spc, pkg, pkgbin, trig_await);
+ parse_ci_call(file, cmd, activate, spc, pkg, pkgbin, TRIG_AWAIT);
} else if (strcmp(cmd, "activate-noawait") == 0) {
- parse_ci_call(file, cmd, activate, spc, pkg, pkgbin, trig_noawait);
+ parse_ci_call(file, cmd, activate, spc, pkg, pkgbin, TRIG_NOAWAIT);
} else {
ohshit(_("triggers ci file contains unknown directive `%.250s'"),
cmd);
diff --git a/lib/dpkg/triglib.h b/lib/dpkg/triglib.h
index e68e74f21..afb1c5b64 100644
--- a/lib/dpkg/triglib.h
+++ b/lib/dpkg/triglib.h
@@ -4,6 +4,7 @@
*
* Copyright © 2007 Canonical, Ltd.
* written by Ian Jackson <ian@chiark.greenend.org.uk>
+ * Copyright © 2008-2014 Guillem Jover <guillem@debian.org>
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -45,8 +46,8 @@ DPKG_BEGIN_DECLS
const char *trig_name_is_illegal(const char *p);
enum trig_options {
- trig_await,
- trig_noawait
+ TRIG_AWAIT,
+ TRIG_NOAWAIT,
};
struct trigfileint {