aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-tag-followup.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/message-tag-followup.c')
-rw-r--r--mail/message-tag-followup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/message-tag-followup.c b/mail/message-tag-followup.c
index b228f689c7..f546a6745d 100644
--- a/mail/message-tag-followup.c
+++ b/mail/message-tag-followup.c
@@ -192,7 +192,7 @@ message_tag_followup_decode (const char *value)
tag = g_new (struct _FollowUpTag, 1);
for (i = 0; i < FOLLOWUP_FLAG_NONE; i++) {
- if (!strncmp (value, available_flags[i].name, strlen (available_flags[i].name)))
+ if (!strcmp (value, available_flags[i].name))
break;
}