summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c8e2db0)
raw | patch | inline | side by side (parent: c8e2db0)
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>
Signed-off-by: Junio C Hamano <junkio@cox.net>
imap-send.c | patch | blob | history |
diff --git a/imap-send.c b/imap-send.c
index 1b38b3af676a2867c09d7eabe36956b87fa9478d..e33c78bff2536089676c9d82df3382926ac1196d 100644 (file)
--- a/imap-send.c
+++ b/imap-send.c
}
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];
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;