Re: [PATCH] imap-send: use Apple's Security framework for base64 encoding

2013-07-29 Thread Junio C Hamano
David Aguilar writes: > diff --git a/imap-send.c b/imap-send.c > index d6b65e2..3fd9c0e 100644 > --- a/imap-send.c > +++ b/imap-send.c > @@ -22,14 +22,11 @@ > * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA > */ > > -#include "cache.h" > -#include "exec_cmd.h" >

Re: [PATCH] imap-send: use Apple's Security framework for base64 encoding

2013-07-29 Thread David Aguilar
On Sun, Jul 28, 2013 at 8:35 PM, Jonathan Nieder wrote: > Hi, > > David Aguilar wrote: > >> --- a/imap-send.c >> +++ b/imap-send.c >> @@ -22,14 +22,11 @@ >> * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 >> USA >> */ >> >> -#include "cache.h" >> -#include "exec_cmd.h

Re: [PATCH] imap-send: use Apple's Security framework for base64 encoding

2013-07-28 Thread Jonathan Nieder
Hi, David Aguilar wrote: > --- a/imap-send.c > +++ b/imap-send.c > @@ -22,14 +22,11 @@ > * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA > */ > > -#include "cache.h" > -#include "exec_cmd.h" > -#include "run-command.h" > -#include "prompt.h" > #ifdef NO_OPENSSL

Re: [PATCH] imap-send: use Apple's Security framework for base64 encoding

2013-07-27 Thread Jeremy Huddleston Sequoia
Hi David, Thanks for massaging it to apply to master and cleaning up the style conflicts. On Jul 27, 2013, at 13:31, David Aguilar wrote: > From: Jeremy Huddleston > > Use Apple's supported functions for base64 encoding instead > of the deprecated OpenSSL functions. > > Signed-off-by: Jeremy

[PATCH] imap-send: use Apple's Security framework for base64 encoding

2013-07-27 Thread David Aguilar
From: Jeremy Huddleston Use Apple's supported functions for base64 encoding instead of the deprecated OpenSSL functions. Signed-off-by: Jeremy Huddleston Signed-off-by: David Aguilar --- This is Jeremy's original patch rebased onto the latest master. Jeremy, the only way I could get this to w