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: Ralph Corderoy
Subject: [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. 1.7-branchpoint-304-g6b6e5f9
Date: Mon, 30 Oct 2017 19:43:39 -0400 (EDT)

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  6b6e5f94f81e56e9e9e1cf26ea596c01ed403555 (commit)
       via  1ca8f21e0edfe448b71ac86de1b0cd987547a002 (commit)
       via  69819af4834557e60c33bb378e29cf3d4e8269f8 (commit)
       via  986abcee996d486db0b9c753974f3cb0eac2e9b2 (commit)
       via  dbdbd49d59ae5c14e66b1c148a63b8abc9d076ab (commit)
       via  00d760f7506c2d5c32ab5abf9f11b3066999f08a (commit)
       via  eed1bea439a5e3c62958fa1e524d527c4a2fb85d (commit)
       via  7a5b7cbf34581a0294713ef5bb92ec5566b6be9f (commit)
      from  88252e1518937b911fa01c27efabd67b0e0e3e57 (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 6b6e5f94f81e56e9e9e1cf26ea596c01ed403555
Author: Ralph Corderoy <address@hidden>
Date:   Mon Oct 30 23:32:58 2017 +0000

    uip: Change global int userrs to bool.

commit 1ca8f21e0edfe448b71ac86de1b0cd987547a002
Author: Ralph Corderoy <address@hidden>
Date:   Mon Oct 30 23:29:32 2017 +0000

    uip: Replace some ints that are only ever 0 or 1 with bool.
    
    Knowing the domain of the variable is Boolean aids comprehension of the
    variable's name and purpose.

commit 69819af4834557e60c33bb378e29cf3d4e8269f8
Author: Ralph Corderoy <address@hidden>
Date:   Mon Oct 30 22:13:02 2017 +0000

    sbr: Replace some ints that are only ever 0 or 1 with bool.
    
    Knowing the domain of the variable is Boolean aids comprehension of the
    variable's name and purpose.

commit 986abcee996d486db0b9c753974f3cb0eac2e9b2
Author: Ralph Corderoy <address@hidden>
Date:   Mon Oct 30 22:11:15 2017 +0000

    mts/smtp/smtp.c: Replace int with bool.

commit dbdbd49d59ae5c14e66b1c148a63b8abc9d076ab
Author: Ralph Corderoy <address@hidden>
Date:   Mon Oct 30 20:58:46 2017 +0000

    nmh_init(): Replace integer parameter with two bools.
    
    Removes the 0, 1, or 2 passed by callers.  If the options get more
    complex then an enum of possible actions might be a better fit.

commit 00d760f7506c2d5c32ab5abf9f11b3066999f08a
Author: Ralph Corderoy <address@hidden>
Date:   Mon Oct 30 20:29:29 2017 +0000

    Replace adios(NULL, ...) with die(...).
    
    It's the common case, and saves having to skip over the NULL when
    reading, and avoids the risk of the format string being passed as the
    first parameter by mistake.

commit eed1bea439a5e3c62958fa1e524d527c4a2fb85d
Author: Ralph Corderoy <address@hidden>
Date:   Mon Oct 30 19:55:14 2017 +0000

    Replace printf(3) with fputs(3) where possible.
    
    The format string has no format specifiers, and doesn't end with `\n',
    so fputs() to stdout is sufficient.

commit 7a5b7cbf34581a0294713ef5bb92ec5566b6be9f
Author: Ralph Corderoy <address@hidden>
Date:   Mon Oct 30 19:52:11 2017 +0000

    mhbuild.man: Avoid using format-free printf(3) in example.
    
    It pops up in searches for printf()s that could be fputs(),
    and as printf() it doesn't output the trailing `\n' to end the line.
    Replace with puts().  Lowercase Kernighan's message, as he wrote it.

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

Summary of changes:
 h/utils.h            |   8 +--
 man/mhbuild.man      |   2 +-
 mts/smtp/smtp.c      |   4 +-
 sbr/arglist.c        |  12 ++--
 sbr/base64.c         |  10 +--
 sbr/context_read.c   |  18 ++---
 sbr/encode_rfc2047.c |   9 +--
 sbr/ext_hook.c       |   6 +-
 sbr/fdcompare.c      |   8 +--
 sbr/fmt_compile.c    |   6 +-
 sbr/fmt_rfc2047.c    |  24 +++----
 sbr/fmt_scan.c       |  10 +--
 sbr/folder_delmsgs.c |   4 +-
 sbr/folder_read.c    |   2 +-
 sbr/folder_realloc.c |   8 +--
 sbr/lock_file.c      |   8 +--
 sbr/m_convert.c      |  16 ++---
 sbr/m_draft.c        |   8 +--
 sbr/m_getfld.c       |  20 +++---
 sbr/m_mktemp.c       |  12 ++--
 sbr/m_rand.c         |   8 ++-
 sbr/makedir.c        |   8 +--
 sbr/mime_type.c      |   9 +--
 sbr/mts.c            |   2 +-
 sbr/oauth.c          |  14 ++--
 sbr/readconfig.c     |   4 +-
 sbr/ruserpass.c      |   9 +--
 sbr/seq_add.c        |  10 +--
 sbr/seq_del.c        |   5 +-
 sbr/seq_read.c       |   4 +-
 sbr/showfile.c       |   6 +-
 sbr/utils.c          |  26 +++----
 sbr/vfgets.c         |   2 +-
 uip/ali.c            |  22 +++---
 uip/anno.c           |  34 +++++-----
 uip/annosbr.c        |   8 +--
 uip/ap.c             |  14 ++--
 uip/burst.c          |  16 ++---
 uip/comp.c           |  48 ++++++-------
 uip/dist.c           |  46 ++++++-------
 uip/distsbr.c        |  14 ++--
 uip/dp.c             |  14 ++--
 uip/flist.c          |  20 +++---
 uip/fmtdump.c        |  28 ++++----
 uip/fmttest.c        |  64 +++++++++---------
 uip/folder.c         |  62 +++++++++--------
 uip/forw.c           |  58 ++++++++--------
 uip/forwsbr.c        |   4 +-
 uip/imaptest.c       |  32 ++++-----
 uip/inc.c            |  66 +++++++++---------
 uip/install-mh.c     |  22 +++---
 uip/mark.c           |  16 ++---
 uip/mhbuild.c        |  62 +++++++++--------
 uip/mhbuildsbr.c     | 188 +++++++++++++++++++++++++--------------------------
 uip/mhcachesbr.c     |   5 +-
 uip/mhfixmsg.c       | 106 ++++++++++++++---------------
 uip/mhical.c         |  57 ++++++++--------
 uip/mhl.c            |   2 +-
 uip/mhlist.c         |  54 ++++++++-------
 uip/mhlogin.c        |  32 ++++-----
 uip/mhlsbr.c         |  16 ++---
 uip/mhmisc.c         |   2 +-
 uip/mhmisc.h         |   2 +-
 uip/mhn.c            |  80 +++++++++++-----------
 uip/mhparam.c        |  17 ++---
 uip/mhparse.c        |  85 ++++++++++++-----------
 uip/mhpath.c         |  12 ++--
 uip/mhshow.c         |  42 ++++++------
 uip/mhshowsbr.c      |  35 +++++-----
 uip/mhstore.c        |  43 ++++++------
 uip/mhstoresbr.c     |  38 ++++++-----
 uip/mkstemp.c        |   8 +--
 uip/msgchk.c         |  43 ++++++------
 uip/new.c            |  16 ++---
 uip/packf.c          |  14 ++--
 uip/pick.c           |  26 +++----
 uip/picksbr.c        |   2 +-
 uip/post.c           | 106 ++++++++++++++---------------
 uip/prompter.c       |  36 +++++-----
 uip/rcvdist.c        |  12 ++--
 uip/rcvpack.c        |   8 +--
 uip/rcvstore.c       |  25 +++----
 uip/rcvtty.c         |  24 +++----
 uip/refile.c         |  36 +++++-----
 uip/repl.c           |  61 +++++++++--------
 uip/replsbr.c        |  12 ++--
 uip/rmf.c            |  12 ++--
 uip/rmm.c            |  12 ++--
 uip/scan.c           |  31 +++++----
 uip/scansbr.c        |   2 +-
 uip/send.c           |  34 +++++-----
 uip/sendsbr.c        |  28 ++++----
 uip/show.c           |  43 ++++++------
 uip/slocal.c         |  53 ++++++++-------
 uip/sortm.c          |  36 +++++-----
 uip/viamail.c        |  22 +++---
 uip/whatnow.c        |   2 +-
 uip/whatnowsbr.c     |  45 ++++++------
 uip/whom.c           |  16 ++---
 99 files changed, 1290 insertions(+), 1243 deletions(-)


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



reply via email to

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