Code

imap-send: remove dead code
authorJeff King <peff@peff.net>
Mon, 6 Feb 2012 06:29:37 +0000 (01:29 -0500)
committerJunio C Hamano <gitster@pobox.com>
Mon, 6 Feb 2012 07:44:56 +0000 (23:44 -0800)
commit28b22f8af9053109d1f09fef749b6b96ee41050a
treec3d72d1116ec108c7df0c759fcf7de37ea76ac68
parent04f6785a089e552585ba022f9d9054eca385ca67
imap-send: remove dead code

The imap-send code was adapted from another project, and
still contains many unused bits of code. One of these bits
contains a type "struct string_list" which bears no
resemblence to the "struct string_list" we use elsewhere in
git. This causes the compiler to complain if git's
string_list ever becomes part of cache.h.

Let's just drop the dead code.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
imap-send.c