Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
fix imap-send for OSX
author
Randal L. Schwartz
<merlyn@stonehenge.com>
Wed, 15 Mar 2006 23:35:06 +0000
(15:35 -0800)
committer
Junio C Hamano
<junkio@cox.net>
Thu, 16 Mar 2006 00:14:54 +0000
(16:14 -0800)
This patch works... I've been using it to stay current.
Signed-off-by: Junio C Hamano <junkio@cox.net>
imap-send.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
c8e2db0
)
diff --git
a/imap-send.c
b/imap-send.c
index 1b38b3af676a2867c09d7eabe36956b87fa9478d..e33c78bff2536089676c9d82df3382926ac1196d 100644
(file)
--- a/
imap-send.c
+++ b/
imap-send.c
@@
-372,7
+372,7
@@
free_generic_messages( message_t *msgs )
}
static int
-vasprintf( char **strp, const char *fmt, va_list ap )
+
git_
vasprintf( char **strp, const char *fmt, va_list ap )
{
int len;
char tmp[1024];
@@
-402,7
+402,7
@@
nfsnprintf( char *buf, int blen, const char *fmt, ... )
static int
nfvasprintf( char **str, const char *fmt, va_list va )
{
- int ret = vasprintf( str, fmt, va );
+ int ret =
git_
vasprintf( str, fmt, va );
if (ret < 0)
die( "Fatal: Out of memory\n");
return ret;