From: Zbigniew Jędrzejewski-Szmek Date: Thu, 21 Sep 2017 16:36:45 +0000 (+0200) Subject: install: move and rename to lowercase two functions X-Git-Tag: v235~71^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a7ec2bf71b146aaa217732d2ad029e730ffb3cd;p=platform%2Fupstream%2Fsystemd.git install: move and rename to lowercase two functions No reason to make them look like macros. --- diff --git a/src/shared/install.c b/src/shared/install.c index 9e4e0ea..d73727e 100644 --- a/src/shared/install.c +++ b/src/shared/install.c @@ -83,6 +83,20 @@ typedef struct { size_t n_rules; } Presets; +static inline bool unit_file_install_info_has_rules(UnitFileInstallInfo *i) { + assert(i); + + return !strv_isempty(i->aliases) || + !strv_isempty(i->wanted_by) || + !strv_isempty(i->required_by); +} + +static inline bool unit_file_install_info_has_also(UnitFileInstallInfo *i) { + assert(i); + + return !strv_isempty(i->also); +} + static inline void presets_freep(Presets *p) { size_t i; @@ -2593,9 +2607,9 @@ static int unit_file_lookup_state( if (r < 0) return r; if (r == 0) { - if (UNIT_FILE_INSTALL_INFO_HAS_RULES(i)) + if (unit_file_install_info_has_rules(i)) state = UNIT_FILE_DISABLED; - else if (UNIT_FILE_INSTALL_INFO_HAS_ALSO(i)) + else if (unit_file_install_info_has_also(i)) state = UNIT_FILE_INDIRECT; else state = UNIT_FILE_STATIC; diff --git a/src/shared/install.h b/src/shared/install.h index 7a5859e..c1fcbe9 100644 --- a/src/shared/install.h +++ b/src/shared/install.h @@ -132,20 +132,6 @@ struct UnitFileInstallInfo { bool auxiliary; }; -static inline bool UNIT_FILE_INSTALL_INFO_HAS_RULES(UnitFileInstallInfo *i) { - assert(i); - - return !strv_isempty(i->aliases) || - !strv_isempty(i->wanted_by) || - !strv_isempty(i->required_by); -} - -static inline bool UNIT_FILE_INSTALL_INFO_HAS_ALSO(UnitFileInstallInfo *i) { - assert(i); - - return !strv_isempty(i->also); -} - bool unit_type_may_alias(UnitType type) _const_; bool unit_type_may_template(UnitType type) _const_;