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-677-g8ad65f7


From: Sergey Poznyakoff
Subject: [SCM] GNU Mailutils branch, master, updated. release-2.2-677-g8ad65f7
Date: Wed, 21 May 2014 14:41:14 +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=8ad65f75903bd0cd024baab2aea20cf0fdba93bd

The branch, master has been updated
       via  8ad65f75903bd0cd024baab2aea20cf0fdba93bd (commit)
      from  9572dc81dd060ad6a2a5ccae13efbb7ccf0608ef (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 8ad65f75903bd0cd024baab2aea20cf0fdba93bd
Author: Sergey Poznyakoff <address@hidden>
Date:   Wed May 21 17:40:30 2014 +0300

    Bugfixes.
    
    * libmailutils/mailbox/attribute.c (mu_attribute_is_equal): Fix comparison.
    * libmailutils/mailbox/biffnotify.c: Add missing includes.

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

Summary of changes:
 libmailutils/mailbox/attribute.c  |    2 +-
 libmailutils/mailbox/biffnotify.c |    2 ++
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/libmailutils/mailbox/attribute.c b/libmailutils/mailbox/attribute.c
index e80ee97..5a632bd 100644
--- a/libmailutils/mailbox/attribute.c
+++ b/libmailutils/mailbox/attribute.c
@@ -368,7 +368,7 @@ mu_attribute_is_equal (mu_attribute_t attr, mu_attribute_t 
attr2)
   int flags2 = 0, flags = 0;
   mu_attribute_get_flags (attr, &flags);
   mu_attribute_get_flags (attr2, &flags2);
-  return flags == flags;
+  return flags == flags2;
 }
 
 /*   Miscellaneous.  */
diff --git a/libmailutils/mailbox/biffnotify.c 
b/libmailutils/mailbox/biffnotify.c
index 2a3bdd7..2169e07 100644
--- a/libmailutils/mailbox/biffnotify.c
+++ b/libmailutils/mailbox/biffnotify.c
@@ -20,6 +20,8 @@
 #endif
 
 #include <unistd.h>
+#include <sys/types.h> 
+#include <sys/socket.h>
 #include <stdlib.h>
 #include <string.h>
 #include <netinet/in.h>


hooks/post-receive
-- 
GNU Mailutils



reply via email to

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