aboutsummaryrefslogtreecommitdiff
path: root/builtin/reflog.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2014-02-15 09:01:46 +0700
committerJunio C Hamano <gitster@pobox.com>2014-02-20 14:15:46 -0800
commiteb07894fe036566acccb71420ab79ccb9c9e2d66 (patch)
tree74709f072ea129623d3771433080de01d5010026 /builtin/reflog.c
parent5f95c9f850b19b368c43ae399cc831b17a26a5ac (diff)
downloadgit-eb07894fe036566acccb71420ab79ccb9c9e2d66.tar.gz
git-eb07894fe036566acccb71420ab79ccb9c9e2d66.tar.xz
use wildmatch() directly without fnmatch() wrapper
Make it clear that we don't use fnmatch() anymore. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/reflog.c')
-rw-r--r--builtin/reflog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/reflog.c b/builtin/reflog.c
index 852cff60b..c12a9784e 100644
--- a/builtin/reflog.c
+++ b/builtin/reflog.c
@@ -561,7 +561,7 @@ static void set_reflog_expiry_param(struct cmd_reflog_expire_cb *cb, int slot, c
return; /* both given explicitly -- nothing to tweak */
for (ent = reflog_expire_cfg; ent; ent = ent->next) {
- if (!fnmatch(ent->pattern, ref, 0)) {
+ if (!wildmatch(ent->pattern, ref, 0, NULL)) {
if (!(slot & EXPIRE_TOTAL))
cb->expire_total = ent->expire_total;
if (!(slot & EXPIRE_UNREACH))