commit-mailutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Mailutils branch, master, updated. release-2.2-91-g4bd61c6


From: Sergey Poznyakoff
Subject: [SCM] GNU Mailutils branch, master, updated. release-2.2-91-g4bd61c6
Date: Sun, 19 Sep 2010 09:43:16 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Mailutils".

http://git.savannah.gnu.org/cgit/mailutils.git/commit/?id=4bd61c62ed2208024109869c306467aa4511c0c0

The branch, master has been updated
       via  4bd61c62ed2208024109869c306467aa4511c0c0 (commit)
       via  c6c97c2937b8aea803d79569f52c8030e98c204a (commit)
      from  a0b652546f1cccc6c00c471b701f0449819cb258 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4bd61c62ed2208024109869c306467aa4511c0c0
Author: Sergey Poznyakoff <address@hidden>
Date:   Sun Sep 19 11:57:15 2010 +0300

    Bugfix.
    
    * libmailutils/stream.c (_mu_stream_create): Mask out internal
    flags.
    * pop3d/pop3d.c (main): Do not handle SIGPIPE, to avoid infinite
    recursion.

commit c6c97c2937b8aea803d79569f52c8030e98c204a
Author: Sergey Poznyakoff <address@hidden>
Date:   Sun Sep 19 10:49:16 2010 +0300

    * testsuite/smtpsend.c (main): Retry ehlo after successful authentication.

-----------------------------------------------------------------------

Summary of changes:
 libmailutils/stream.c |    2 +-
 pop3d/pop3d.c         |    3 +--
 testsuite/smtpsend.c  |    3 +++
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/libmailutils/stream.c b/libmailutils/stream.c
index 978f12a..d8a92a3 100644
--- a/libmailutils/stream.c
+++ b/libmailutils/stream.c
@@ -249,7 +249,7 @@ _mu_stream_create (size_t size, int flags)
   if (size < sizeof (str))
     abort ();
   str = mu_zalloc (size);
-  str->flags = flags;
+  str->flags = flags & ~_MU_STR_INTERN_MASK;
   mu_stream_ref (str);
   return str;
 }
diff --git a/pop3d/pop3d.c b/pop3d/pop3d.c
index 83bf850..0d46c5a 100644
--- a/pop3d/pop3d.c
+++ b/pop3d/pop3d.c
@@ -314,8 +314,7 @@ main (int argc, char **argv)
 {
   struct group *gr;
   int status = OK;
-  static int sigtab[] = { SIGILL, SIGBUS, SIGFPE, SIGSEGV, SIGSTOP, SIGPIPE,
-                         SIGABRT };
+  static int sigtab[] = { SIGILL, SIGBUS, SIGFPE, SIGSEGV, SIGSTOP, SIGPIPE };
 
   /* Native Language Support */
   MU_APP_INIT_NLS ();
diff --git a/testsuite/smtpsend.c b/testsuite/smtpsend.c
index 74039dc..9978b7a 100644
--- a/testsuite/smtpsend.c
+++ b/testsuite/smtpsend.c
@@ -192,6 +192,9 @@ main (int argc, char **argv)
       switch (status)
        {
        case 0:
+         MU_ASSERT (mu_smtp_ehlo (smtp));
+         break;
+         
        case ENOSYS:
        case MU_ERR_NOENT:
          /* Ok, skip it */


hooks/post-receive
-- 
GNU Mailutils



reply via email to

[Prev in Thread] Current Thread [Next in Thread]