X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Fstrv.h;h=518c4c2aa8b94da5d013a97127ef3d27595a8e43;hb=f5ce2b49585a14cefb6d02f61c8dcdf7628a8605;hp=a899395ba4efb1ebc0c439a1b4474d75828b0e3d;hpb=bceccd5ecc393c344ab008737ba6aab211a5ea9f;p=elogind.git diff --git a/src/shared/strv.h b/src/shared/strv.h index a899395ba..518c4c2aa 100644 --- a/src/shared/strv.h +++ b/src/shared/strv.h @@ -146,10 +146,10 @@ void strv_print(char **l); char **strv_reverse(char **l); -bool strv_fnmatch(const char *s, char* const* patterns, int flags); +bool strv_fnmatch(char* const* patterns, const char *s, int flags); -static inline bool strv_fnmatch_or_empty(const char *s, char* const* patterns, int flags) { +static inline bool strv_fnmatch_or_empty(char* const* patterns, const char *s, int flags) { assert(s); return strv_isempty(patterns) || - strv_fnmatch(s, patterns, flags); + strv_fnmatch(patterns, s, flags); }