From a3f726e35f1e7d918061074a85ebe7a2c7c300a5 Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Tue, 10 Nov 1998 22:14:00 +0000 Subject: Introduce or rewrite mutt_{str*cmp,strlen} and use them all over the place. If there are still segmentation faults due to missing NONULLs over, they are gone now. --- hook.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hook.c') diff --git a/hook.c b/hook.c index 4df4da96..a0223451 100644 --- a/hook.c +++ b/hook.c @@ -114,14 +114,14 @@ int mutt_parse_hook (BUFFER *buf, BUFFER *s, unsigned long data, BUFFER *err) { if (ptr->type == data && ptr->rx.not == not && - !strcmp (pattern.data, ptr->rx.pattern)) + !mutt_strcmp (pattern.data, ptr->rx.pattern)) { if (data & (M_FOLDERHOOK | M_SENDHOOK)) { /* folder-hook and send-hook allow multiple commands with the same pattern, so if we've already seen this pattern/command pair, just ignore it instead of creating a duplicate */ - if (!strcmp (ptr->command, command.data)) + if (!mutt_strcmp (ptr->command, command.data)) { FREE (&command.data); FREE (&pattern.data); -- cgit v1.2.3