summaryrefslogtreecommitdiff
path: root/maidag
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2011-08-25 16:00:47 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2011-08-25 16:00:47 +0300
commitbdf3c6cf36fd7781c9a59babda57c5eb9261de45 (patch)
treecc8a655481ce27c35b04738beafd3ee220e9adef /maidag
parenteb851fbc9fec91c1bd095500d3e9b24829ee53cc (diff)
downloadmailutils-bdf3c6cf36fd7781c9a59babda57c5eb9261de45.tar.gz
mailutils-bdf3c6cf36fd7781c9a59babda57c5eb9261de45.tar.bz2
Bugfixes
* maidag/lmtp.c: Fix typo in a function name. * mh/burst.c (burst_digest): Initialize result.
Diffstat (limited to 'maidag')
-rw-r--r--maidag/lmtp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/maidag/lmtp.c b/maidag/lmtp.c
index 9a12ada43..f69ca24e7 100644
--- a/maidag/lmtp.c
+++ b/maidag/lmtp.c
@@ -27,7 +27,7 @@
mu_list_t lmtp_groups;
static mu_stream_t
-lmpt_transcript (mu_stream_t iostream)
+lmtp_transcript (mu_stream_t iostream)
{
int rc;
mu_stream_t dstr, xstr;
@@ -589,7 +589,7 @@ lmtp_connection (int fd, struct sockaddr *sa, int salen, void *data,
mu_stream_set_buffer (str, mu_buffer_line, 0);
if (transcript || maidag_transcript)
- str = lmpt_transcript (str);
+ str = lmtp_transcript (str);
lmtp_loop (str, timeout);
mu_stream_destroy (&str);
return 0;
@@ -704,7 +704,7 @@ maidag_lmtp_server ()
}
if (maidag_transcript)
- str = lmpt_transcript (str);
+ str = lmtp_transcript (str);
rc = lmtp_loop (str, 0);
mu_stream_destroy (&str);

Return to:

Send suggestions and report system problems to the System administrator.