summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-02-16 14:04:36 -0500
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-02-16 14:04:36 -0500
commit2404701e679904979751816930101511d8ec5d49 (patch)
tree618719c0296c0362978d5f8f2f662a9ef103fad7 /src/shared
parentd49dc8127676358e706663f3603265942d2507aa (diff)
Transpose args in strv_fnmatch() to be more oo
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/strv.c2
-rw-r--r--src/shared/strv.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/shared/strv.c b/src/shared/strv.c
index 2268bf61d..e27ac6815 100644
--- a/src/shared/strv.c
+++ b/src/shared/strv.c
@@ -693,7 +693,7 @@ char **strv_reverse(char **l) {
return l;
}
-bool strv_fnmatch(const char *s, char* const* patterns, int flags) {
+bool strv_fnmatch(char* const* patterns, const char *s, int flags) {
char* const* p;
STRV_FOREACH(p, patterns)
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);
}