nmh-commits
[Top][All Lists]
Advanced

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

[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated


From: David Levine
Subject: [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. de3930eed91e934f7842beb8932153ca7e568047
Date: Sat, 31 Mar 2012 16:52:24 +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 "The nmh Mail Handling System".

The branch, master has been updated
       via  de3930eed91e934f7842beb8932153ca7e568047 (commit)
      from  89b640fbfe885673d18b9232f2b8a60ce173a897 (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 -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=de3930eed91e934f7842beb8932153ca7e568047


commit de3930eed91e934f7842beb8932153ca7e568047
Author: David Levine <address@hidden>
Date:   Sat Mar 31 11:52:10 2012 -0500

    Added const qualifier to a couple of local pointers to get rid of compile 
warnings with --with-tls.

diff --git a/mts/smtp/smtp.c b/mts/smtp/smtp.c
index 5e4b7bd..3ba9fbc 100644
--- a/mts/smtp/smtp.c
+++ b/mts/smtp/smtp.c
@@ -316,7 +316,7 @@ smtp_init (char *client, char *server, char *port, int 
watch, int verbose,
         */
 
        if (! sslctx) {
-           SSL_METHOD *method;
+           const SSL_METHOD *method;
 
            SSL_library_init();
            SSL_load_error_strings();
@@ -386,7 +386,7 @@ smtp_init (char *client, char *server, char *port, int 
watch, int verbose,
        }
 
        if (sm_debug) {
-           SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
+           const SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
            printf("SSL negotiation successful: %s(%d) %s\n",
                   SSL_CIPHER_get_name(cipher),
                   SSL_CIPHER_get_bits(cipher, NULL),
diff --git a/test/README b/test/README
index 6d39162..ad2190a 100644
--- a/test/README
+++ b/test/README
@@ -17,7 +17,7 @@ designed to work with Automake.  To run these tests you can 
do "make check"
 via the top-level Makefile.  This is also done automatically via
 "make distcheck".
 
-WARNING:  The test suite installs nmh and run the tests on that test
+WARNING:  The test suite installs nmh and runs the tests on that test
 installation.  If you run tests individually, they will not remove
 that test installation or check to see if it remains up to date with
 your nmh workspace.  You can run test/clean after a test to remove the

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

Summary of changes:
 mts/smtp/smtp.c |    4 ++--
 test/README     |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
The nmh Mail Handling System



reply via email to

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