From 81b38947c17d319204a1292d28c8608c7fc25319 Mon Sep 17 00:00:00 2001 From: Michael Haggerty Date: Tue, 15 Jan 2013 09:06:25 +0100 Subject: [PATCH] imap-send.c: inline parse_imap_list() in parse_list() The function is only called from here. Signed-off-by: Michael Haggerty Reviewed-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- imap-send.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/imap-send.c b/imap-send.c index 131325a319..0d1f87a651 100644 --- a/imap-send.c +++ b/imap-send.c @@ -669,21 +669,16 @@ static int parse_imap_list_l(struct imap *imap, char **sp, struct imap_list **cu return -1; } -static struct imap_list *parse_imap_list(struct imap *imap, char **sp) +static struct imap_list *parse_list(char **sp) { struct imap_list *head; - if (!parse_imap_list_l(imap, sp, &head, 0)) + if (!parse_imap_list_l(NULL, sp, &head, 0)) return head; free_list(head); return NULL; } -static struct imap_list *parse_list(char **sp) -{ - return parse_imap_list(NULL, sp); -} - static void parse_capability(struct imap *imap, char *cmd) { char *arg;