commit-inetutils
[Top][All Lists]
Advanced

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

[SCM] GNU Inetutils branch, master, updated. inetutils-1_6-121-gcd6e496


From: Alfred M. Szmidt
Subject: [SCM] GNU Inetutils branch, master, updated. inetutils-1_6-121-gcd6e496
Date: Sat, 05 Dec 2009 21:14:04 +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 Inetutils ".

The branch, master has been updated
       via  cd6e4961e06316a39fea71f456579ec2ca089c13 (commit)
       via  29ca0392631f0503dbdd29c19ec0d661de222e08 (commit)
       via  c006a543bbbba2a3494af0e0e06db86507885ce8 (commit)
       via  da47c16b53c84a9391bf2e510b66e24532daa347 (commit)
       via  d2519ab3da3ac8461ff4bea6bfc3aae3477a0cf4 (commit)
       via  4e8de381584a305ffa9f753063bc1e05647c40d7 (commit)
       via  491523fdad70e7aa552324655e851f00979dd589 (commit)
       via  ab969f82f079e6f2e58fd0924b41f19f18fc10c4 (commit)
       via  0dd69e25d7cb5908b3f3b68cb5d314c0decc1f12 (commit)
       via  f28df48d91d267bed618c2f183585afd86447170 (commit)
       via  ed43dcbf2a6eab6cce0df283727fa30c348defb4 (commit)
      from  7d5f7490e4ad7ffe405a71670331df544bae32de (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/inetutils.git/commit/?id=cd6e4961e06316a39fea71f456579ec2ca089c13


commit cd6e4961e06316a39fea71f456579ec2ca089c13
Author: Alfred M. Szmidt <address@hidden>
Date:   Sat Dec 5 18:02:57 2009 +0100

    Minor cosmetic fixes.  (silent change)

diff --git a/ChangeLog b/ChangeLog
index 5af5bc7..0921345 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -17,11 +17,11 @@
 
        * configure.ac (AM_SILENT_RULES): Call macro.
 
-2009-12-05  Samuel Thibault <address@hidden> (tiny change)
+2009-12-05  Samuel Thibault  <address@hidden> (tiny change)
 
        * am/config_paths.m4 (IU_CONFIG_PATHS): Set iu_test_type to `e'.
 
-2009-12-05  Ludovic Courtès <address@hidden> (tiny change)
+2009-12-05  Ludovic Courtès  <address@hidden> (tiny change)
 
        * tests/Makefile.am (check_SCRIPTS): New variable.
        (TESTS): Added $(check_SCRIPTS), removed `ping-localhost.sh' and
@@ -32,7 +32,7 @@
 
        * cfg.mk (news-check-regexp): New variable.
 
-2009-12-04  Guillem Jover <address@hidden>
+2009-12-04  Guillem Jover  <address@hidden>
 
        * ftp/ftp.c (hookup, initconn): Change `len' type from size_t to
        socklen_t.

http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=29ca0392631f0503dbdd29c19ec0d661de222e08


commit 29ca0392631f0503dbdd29c19ec0d661de222e08
Author: Alfred M. Szmidt <address@hidden>
Date:   Sat Dec 5 18:02:38 2009 +0100

    Make sure to use that the utmp structure is of the same size,
    independent of machine wordsize.

diff --git a/ChangeLog b/ChangeLog
index 01c5496..5af5bc7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 2009-12-05  Guillem Jover  <address@hidden>
 
+       * ftpd/logwtmp.c (logwtmp) [_HAVE_UT_TV]: Use a `struct timeval'
+       variable to get the result from gettimeofday.
+       * libinetutils/logwtmp.c (logwtmp) [HAVE_STRUCT_UTMP_UT_TV]:
+       Likewise.
+       * libinetutils/utmp_init.c (utmp_init) [HAVE_STRUCT_UTMPX_UT_TV]:
+       Likewise.
+       * libinetutils/utmp_logout.c (utmp_logout): Likewise.
+
+2009-12-05  Guillem Jover  <address@hidden>
+
        * uucpd/uucpd.c (dologin): New `time_t' variable to use with
        time(), copy its contents to `ll.ll_time' afterwards.
 
diff --git a/ftpd/logwtmp.c b/ftpd/logwtmp.c
index 99e23f6..a21bd0c 100644
--- a/ftpd/logwtmp.c
+++ b/ftpd/logwtmp.c
@@ -74,6 +74,9 @@ void
 logwtmp (const char *line, const char *name, const char *host)
 {
   struct utmp ut;
+#if _HAVE_UT_TV - 0
+  struct timeval tv;
+#endif
 
   /* Set information in new entry.  */
   memset (&ut, 0, sizeof (ut));
@@ -87,7 +90,9 @@ logwtmp (const char *line, const char *name, const char *host)
 #endif
 
 #if _HAVE_UT_TV - 0
-  gettimeofday (&ut.ut_tv, NULL);
+  gettimeofday (&tv, NULL);
+  ut.ut_tv.tv_sec = tv.tv_sec;
+  ut.ut_tv.tv_usec = tv.tv_usec;
 #else
   time (&ut.ut_time);
 #endif
diff --git a/libinetutils/logwtmp.c b/libinetutils/logwtmp.c
index 0dad8cd..0940967 100644
--- a/libinetutils/logwtmp.c
+++ b/libinetutils/logwtmp.c
@@ -111,6 +111,9 @@ logwtmp (char *line, char *name, char *host)
 #endif
 {
   struct utmp ut;
+#ifdef HAVE_STRUCT_UTMP_UT_TV
+  struct timeval tv;
+#endif
 
   /* Set information in new entry.  */
   bzero (&ut, sizeof (ut));
@@ -124,7 +127,9 @@ logwtmp (char *line, char *name, char *host)
 #endif
 
 #ifdef HAVE_STRUCT_UTMP_UT_TV
-  gettimeofday (&ut.ut_tv, NULL);
+  gettimeofday (&tv, NULL);
+  ut.ut_tv.tv_sec = tv.tv_sec;
+  ut.ut_tv.tv_usec = tv.tv_usec;
 #else
   time (&ut.ut_time);
 #endif
diff --git a/libinetutils/utmp_init.c b/libinetutils/utmp_init.c
index 1ce2549..07fe050 100644
--- a/libinetutils/utmp_init.c
+++ b/libinetutils/utmp_init.c
@@ -76,6 +76,9 @@ utmp_init (char *line, char *user, char *id)
 #else
   struct utmp utx;
 #endif
+#if defined(HAVE_STRUCT_UTMPX_UT_TV)
+  struct timeval tv;
+#endif
 
   memset ((char *) &utx, 0, sizeof (utx));
 #if defined(HAVE_STRUCT_UTMP_UT_ID)
@@ -94,7 +97,9 @@ utmp_init (char *line, char *user, char *id)
   utx.ut_type = LOGIN_PROCESS;
 #endif
 #if defined(HAVE_STRUCT_UTMPX_UT_TV)
-  gettimeofday (&(utx.ut_tv), 0);
+  gettimeofday (&tv, 0);
+  utx.ut_tv.tv_sec = tv.tv_sec;
+  utx.ut_tv.tv_usec = tv.tv_usec;
 #else
   time (&(utx.ut_time));
 #endif
diff --git a/libinetutils/utmp_logout.c b/libinetutils/utmp_logout.c
index cea9e0d..cc36494 100644
--- a/libinetutils/utmp_logout.c
+++ b/libinetutils/utmp_logout.c
@@ -76,10 +76,14 @@ utmp_logout (char *line)
   ut = getutxline (&utx);
   if (ut)
     {
+      struct timeval tv;
+
       ut->ut_type = DEAD_PROCESS;
       ut->ut_exit.e_termination = 0;
       ut->ut_exit.e_exit = 0;
-      gettimeofday (&(ut->ut_tv), 0);
+      gettimeofday (&tv, 0);
+      ut->ut_tv.tv_sec = tv_sec;
+      ut->ut_tv.tv_usec = tv_usec;
       pututxline (ut);
       updwtmpx (PATH_WTMPX, ut);
     }
@@ -93,6 +97,10 @@ utmp_logout (char *line)
   ut = getutline (&utx);
   if (ut)
     {
+# ifdef HAVE_STRUCT_UTMP_UT_TV
+      struct timeval tv;
+# endif
+
 # ifdef HAVE_STRUCT_UTMP_UT_TYPE
       ut->ut_type = DEAD_PROCESS;
 # endif
@@ -101,7 +109,9 @@ utmp_logout (char *line)
       ut->ut_exit.e_exit = 0;
 # endif
 # ifdef HAVE_STRUCT_UTMP_UT_TV
-      gettimeofday (&(ut->ut_tv), 0);
+      gettimeofday (&tv, 0);
+      ut->ut_tv.tv_sec = tv.tv_sec;
+      ut->ut_tv.tv_usec = tv.tv_usec;
 # else
       time (&(ut->ut_time));
 # endif

http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=c006a543bbbba2a3494af0e0e06db86507885ce8


commit c006a543bbbba2a3494af0e0e06db86507885ce8
Author: Alfred M. Szmidt <address@hidden>
Date:   Sat Dec 5 18:02:15 2009 +0100

    uucpd/uucpd.c (dologin): New `time_t' variable to use with time(),
    copy its contents to `ll.ll_time' afterwards.

diff --git a/ChangeLog b/ChangeLog
index 24e7dc2..01c5496 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2009-12-05  Guillem Jover  <address@hidden>
 
+       * uucpd/uucpd.c (dologin): New `time_t' variable to use with
+       time(), copy its contents to `ll.ll_time' afterwards.
+
+2009-12-05  Guillem Jover  <address@hidden>
+
        * configure.ac (AM_SILENT_RULES): Call macro.
 
 2009-12-05  Samuel Thibault <address@hidden> (tiny change)
diff --git a/uucpd/uucpd.c b/uucpd/uucpd.c
index 34f833b..5388d0f 100644
--- a/uucpd/uucpd.c
+++ b/uucpd/uucpd.c
@@ -277,8 +277,10 @@ dologin (struct passwd *pw, struct sockaddr_in *sin)
   if (f >= 0)
     {
       struct lastlog ll;
+      time_t t;
 
-      time (&ll.ll_time);
+      time (&t);
+      ll.ll_time = t;
       lseek (f, (long) pw->pw_uid * sizeof (struct lastlog), 0);
       strcpy (line, remotehost);
       SCPYN (ll.ll_line, line);

http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=da47c16b53c84a9391bf2e510b66e24532daa347


commit da47c16b53c84a9391bf2e510b66e24532daa347
Author: Alfred M. Szmidt <address@hidden>
Date:   Sat Dec 5 18:01:49 2009 +0100

    configure.ac (AM_SILENT_RULES): Call macro.

diff --git a/ChangeLog b/ChangeLog
index 21fb9a5..24e7dc2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-12-05  Guillem Jover  <address@hidden>
+
+       * configure.ac (AM_SILENT_RULES): Call macro.
+
 2009-12-05  Samuel Thibault <address@hidden> (tiny change)
 
        * am/config_paths.m4 (IU_CONFIG_PATHS): Set iu_test_type to `e'.
diff --git a/configure.ac b/configure.ac
index ef9efe0..13c7b2d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -116,6 +116,8 @@ IU_ENABLE_CLIENT(traceroute)
 
 AM_INIT_AUTOMAKE
 
+AM_SILENT_RULES([yes]) # make --enable-silent-rules the default.
+
 AC_ISC_POSIX
 
 ### Checks for programs.

http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=d2519ab3da3ac8461ff4bea6bfc3aae3477a0cf4


commit d2519ab3da3ac8461ff4bea6bfc3aae3477a0cf4
Author: Alfred M. Szmidt <address@hidden>
Date:   Sat Dec 5 18:01:28 2009 +0100

    am/config_paths.m4 (IU_CONFIG_PATHS): Set iu_test_type to `e'.

diff --git a/ChangeLog b/ChangeLog
index 5e69ea9..21fb9a5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-12-05  Samuel Thibault <address@hidden> (tiny change)
+
+       * am/config_paths.m4 (IU_CONFIG_PATHS): Set iu_test_type to `e'.
+
 2009-12-05  Ludovic Courtès <address@hidden> (tiny change)
 
        * tests/Makefile.am (check_SCRIPTS): New variable.
diff --git a/am/config_paths.m4 b/am/config_paths.m4
index b7d1bed..47dabb7 100644
--- a/am/config_paths.m4
+++ b/am/config_paths.m4
@@ -86,7 +86,7 @@ AC_DEFUN([IU_CONFIG_PATHS], [
     else
       # search for a reasonable value
 
-      iu_test_type=r           # `exists'
+      iu_test_type=e           # `exists'
       iu_default='' iu_prev_cross_test=''
       for iu_try in $iu_paths_h $iu_search; do
        iu_cross_test=''

http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=4e8de381584a305ffa9f753063bc1e05647c40d7


commit 4e8de381584a305ffa9f753063bc1e05647c40d7
Author: Alfred M. Szmidt <address@hidden>
Date:   Sat Dec 5 18:01:11 2009 +0100

    Add missing ChangeLog entry.

diff --git a/ChangeLog b/ChangeLog
index 19a6755..5e69ea9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -840,6 +840,10 @@
        * README-hacking: File removed.
        * README-alpha: Updated.
 
+2009-02-06  Simon Josefsson <address@hidden>
+
+       * configure.ac: Bump version number to 1.6.90.
+
 2009-01-23  Rakesh Pandit <address@hidden>
 
        * ftpd/ftpcmd.y: Fix typo.

http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=491523fdad70e7aa552324655e851f00979dd589


commit 491523fdad70e7aa552324655e851f00979dd589
Author: Alfred M. Szmidt <address@hidden>
Date:   Sat Dec 5 18:00:51 2009 +0100

    Fix typo.  Version was bumped to 1.6.91, not 1.6.90.  (silent change)

diff --git a/ChangeLog b/ChangeLog
index 674ec97..19a6755 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -276,7 +276,7 @@
 
 2009-11-14  Alfred M. Szmidt  <address@hidden>
 
-       * configure.ac: Bump version number to 1.6.90.
+       * configure.ac: Bump version number to 1.6.91.
 
 2009-11-14  Alfred M. Szmidt  <address@hidden>
 

http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=ab969f82f079e6f2e58fd0924b41f19f18fc10c4


commit ab969f82f079e6f2e58fd0924b41f19f18fc10c4
Author: Alfred M. Szmidt <address@hidden>
Date:   Sat Dec 5 18:00:29 2009 +0100

    Make sure that test scripts are part of the distribution tarball.

diff --git a/ChangeLog b/ChangeLog
index d35f1be..674ec97 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-12-05  Ludovic Courtès <address@hidden> (tiny change)
+
+       * tests/Makefile.am (check_SCRIPTS): New variable.
+       (TESTS): Added $(check_SCRIPTS), removed `ping-localhost.sh' and
+       `traceroute-localhost.sh' from list.
+       (EXTRA_DIST): New variable.
+
 2009-12-05  Alfred M. Szmidt  <address@hidden>
 
        * cfg.mk (news-check-regexp): New variable.
diff --git a/tests/Makefile.am b/tests/Makefile.am
index ea6b058..e653fbe 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -21,6 +21,9 @@ AM_CPPFLAGS = -I$(top_srcdir)/libinetutils -I$(top_srcdir)/lib
 LDADD = -L../libinetutils -linetutils  ../lib/libgnu.a
 
 check_PROGRAMS = localhost
-TESTS = $(check_PROGRAMS) ping-localhost.sh traceroute-localhost.sh
+check_SCRIPTS = ping-localhost.sh traceroute-localhost.sh
+TESTS = $(check_PROGRAMS) $(check_SCRIPTS)
+
+EXTRA_DIST = $(TESTS)
 
 TESTS_ENVIRONMENT = EXEEXT=$(EXEEXT)

http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=0dd69e25d7cb5908b3f3b68cb5d314c0decc1f12


commit 0dd69e25d7cb5908b3f3b68cb5d314c0decc1f12
Author: Alfred M. Szmidt <address@hidden>
Date:   Sat Dec 5 17:58:21 2009 +0100

    Cosmetic fixes.  Removed time-stamp update.  (silent change)

diff --git a/NEWS b/NEWS
index a24bd03..aa14379 100644
--- a/NEWS
+++ b/NEWS
@@ -1,13 +1,12 @@
-GNU inetutils NEWS -- history of user-visible changes. 2009-10-29
+GNU inetutils NEWS -- history of user-visible changes.
 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 See the end of this file for for license conditions.
 
 Please send inetutils bug reports to <address@hidden>.
-
 
 Unreleased
-Version 1.7:
+Version 1.6.91:
 
 * ping
 
@@ -24,7 +23,6 @@ PID of the `logger' process.
 * Restore the traditional behavior of ping without -c option.
 
 * The manual is now licensed under the GNU FDL version 1.3 or later.
-
 
 December 27, 2008
 Version 1.6:
@@ -51,7 +49,6 @@ globally (affecting several services).
 
 It is possible to limit the number of service instances for `nowait'
 services. 
-
 
 October 21, 2006
 Version 1.5:
@@ -94,7 +91,6 @@ Version 1.4.2:
 * Security fix for rexecd/rshd.
 
 * Fix processing accumulated messages in syslogd
-
 
 September 02, 2002
 Version 1.4.1:
@@ -111,7 +107,6 @@ Version 1.4.1:
 * The syntax of syslog.conf file has been extended. The new
   wildcard facility specification, **, catches all messages with
   a facility not specified explicitely in the configuration file. 
-
 
 July 31, 2002
 Version 1.4.0:
@@ -141,7 +136,6 @@ Version 1.4.0:
   line.
 
 * Inetutils should generally compile on most platforms now.
-
 
 March, 13, 1998
 Version 1.3.2:
@@ -149,7 +143,6 @@ Version 1.3.2:
  This release attempts to get the encryption/authentication options to
  compile correctly; they appear to work on systems with the appropriate
  libraries, but have not been well tested.
-
 
 September, 11, 1997
 Version 1.3.1:
@@ -158,7 +151,6 @@ Version 1.3.1:
 
  Telnet now won't force the stripping of 8-bit characters when not in binary
  mode (it will leave the terminal in whatever state it was originally).
-
 
 February, 25, 1997
 Version 1.3:
@@ -175,7 +167,6 @@ Version 1.3:
 
  Many security fixes have been made, so this release should be more secure
  than previous ones.
-
 
 August, 21, 1996
 Version 1.2:
@@ -185,7 +176,6 @@ Version 1.2:
 
  A major bug in ftpd bug that prevents most logins from succeeding is
  fixed, as well as other, more minor, bugs.
-
 
 Version 1.1:
 
@@ -209,8 +199,4 @@ also that they carry prominent notices stating who last 
changed them.
 Local variables:
 mode: outline
 paragraph-separate: "[         ]*$"
-eval: (add-hook 'write-file-hooks 'time-stamp)
-time-stamp-start: "changes. "
-time-stamp-format: "%:y-%02m-%02d"
-time-stamp-end: "\n"
 end:

http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=f28df48d91d267bed618c2f183585afd86447170


commit f28df48d91d267bed618c2f183585afd86447170
Author: Alfred M. Szmidt <address@hidden>
Date:   Sat Dec 5 17:57:38 2009 +0100

    cfg.mk (news-check-regexp): New variable.

diff --git a/ChangeLog b/ChangeLog
index 3bcddd6..d35f1be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-12-05  Alfred M. Szmidt  <address@hidden>
+
+       * cfg.mk (news-check-regexp): New variable.
+
 2009-12-04  Guillem Jover <address@hidden>
 
        * ftp/ftp.c (hookup, initconn): Change `len' type from size_t to
diff --git a/cfg.mk b/cfg.mk
index dda6c6d..e2d64e9 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -16,6 +16,8 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see `http://www.gnu.org/licenses/'.
 
+news-check-regexp = '^Version $(VERSION_REGEXP):'
+
 local-checks-to-skip = \
        sc_error_message_period \
        sc_error_message_uppercase \

http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=ed43dcbf2a6eab6cce0df283727fa30c348defb4


commit ed43dcbf2a6eab6cce0df283727fa30c348defb4
Author: Alfred M. Szmidt <address@hidden>
Date:   Sat Dec 5 17:57:25 2009 +0100

    Fix formating.  (silent change)

diff --git a/ChangeLog b/ChangeLog
index 76a977b..3bcddd6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,22 +1,27 @@
 2009-12-04  Guillem Jover <address@hidden>
 
-       * ftp/ftp.c (hookup, initconn): Change `len' type from size_t to 
socklen_t.
+       * ftp/ftp.c (hookup, initconn): Change `len' type from size_t to
+       socklen_t.
        (dataconn): Change `fromlen' type from size_t to socklen_t.
-       * ftpd/server_mode.c (server_mode): Change `addrlen' type from size_t to
+       * ftpd/server_mode.c (server_mode): Change `addrlen' type from
+       size_t to socklen_t.
+       * ping/libping.c (ping_recv): Change `fromlen' type from size_t to
        socklen_t.
-       * ping/libping.c (ping_recv): Change `fromlen' type from size_t to 
socklen_t.
        * rexecd/rexecd.c (main): Likewise.
-       * rlogind/rlogind.c (rlogin_daemon, rlogind_mainloop): Change `size' 
type
-       from size_t to socklen_t.
+       * rlogind/rlogind.c (rlogin_daemon, rlogind_mainloop): Change
+       `size' type from size_t to socklen_t.
        (rlogind_auth): Change `optsize' type from size_t to socklen_t.
-       * rshd/rshd.c (main): Change `fromlen' type from size_t to socklen_t.
+       * rshd/rshd.c (main): Change `fromlen' type from size_t to
+       socklen_t.
        (doit): Change `optsize' type from size_t to socklen_t.
-       * syslogd/syslogd.c (main): Change `len' type from size_t to socklen_t.
-       * talk/ctl.c (open_sockt, open_ctl): Change `length' type from size_t to
+       * syslogd/syslogd.c (main): Change `len' type from size_t to
        socklen_t.
-       * talkd/talkd.c (talkd_run): Change `len' type from size_t to socklen_t.
-       * tftp/tftp.c (send_file, recvfile): Change `fromlen' type from size_t 
to
+       * talk/ctl.c (open_sockt, open_ctl): Change `length' type from
+       size_t to socklen_t.
+       * talkd/talkd.c (talkd_run): Change `len' type from size_t to
        socklen_t.
+       * tftp/tftp.c (send_file, recvfile): Change `fromlen' type from
+       size_t to socklen_t.
        * tftpd/tftpd.c (fromlen): Likewise.
        (main): Change `j' type from size_t to socklen_t.
 
@@ -82,7 +87,7 @@
        size_t.
        * hostname/hostname.c (struct hostname_arguments): Change type of
        `hostname_new' to (char *).
-       (set_name):  Likewise.
+       (set_name): Likewise.
        (get_name): Remove unused variable.
        * ifconfig/system/linux.c (system_fh_hwaddr): Add cast.
        * inetd/inetd.c (expand_enter): Remove unused variables.
@@ -140,16 +145,14 @@
        * telnetd/termstat.c (clientstat): Add parentheses around
        assignment.
        (getconfigent): Change `argc' and `i' type to int.
-       * telnetd/utility.c [HAVE_READLINE_READLINE_H]: Include
-       <term.h>.
+       * telnetd/utility.c [HAVE_READLINE_READLINE_H]: Include <term.h>.
        (net_get_char): Add default return statement.
        (pty_get_char): Likewise.
        (pty_input_putback): Likewise.
        (debug_close): Likewise.
        (printsub): Cast &pointer[i] to (char *) when used as argument to
        debug_output_datalen.
-       * tftpd/tftpd.c (fromlen): Change type to size_t.  Make it
-       static.
+       * tftpd/tftpd.c (fromlen): Change type to size_t.  Make it static.
        (peer, rexmtval, maxtimeout, buf, ackbuf, from): Make static.
        (main): Change type of `j' to size_t.
        * telnet/externs.h (env_getvalue): Change argument type to const
@@ -159,10 +162,10 @@
        (dokludgemode): Add return statement.
        (shell): Use NULL as sentinel to execl.
        (quit): Add return statement.
-       (env_default, env_undefine, getcmd, tn): Add
-       parentheses around assignment used as boolean value.
+       (env_default, env_undefine, getcmd, tn): Add parentheses around
+       assignment used as boolean value.
        (env_define, env_export, env_getvalue, env_init, env_undefine)
-       (env_unexport): Move assignment out from the if condition.
+       (env_unexport): Move assignment out from the if condition.
        (env_export, env_find, env_define, env_send, env_unexport)
        (env_varval): Change type of `var' to (const char *).
        (tn): Add parentheses around logic operators.
@@ -171,13 +174,12 @@
        boolean value.
        * telnet/sys_bsd.c (process_rings): Cast ttyiring.supply to char *
        when used as argument to TerminalRead.
-       * telnet/telnet.c [HAVE_READLINE_READLINE_H]: Include
-       <term.h>.
+       * telnet/telnet.c [HAVE_READLINE_READLINE_H]: Include <term.h>.
        (initfunc, env_opt_add): Add parentheses around assignment used as
        boolean value.
        (dooption, gettermname, suboption, telnet): Remove cast.
        (suboption): Add casts to int.
-       * telnet/terminal.c (ttyflush): When used as argument,  cast
+       * telnet/terminal.c (ttyflush): When used as argument, cast
        ttyiring.{bottom, consume} (char *) to TerminalRead.
        * tftp/tftp.c (send_file): Change `fromlen' type to size_t.
        (recvfile): Likewise.
@@ -215,8 +217,8 @@
 
 2009-11-15  Alfred M. Szmidt  <address@hidden>
 
-       * libtelnet/shishi.c: Don't include
-       <assert.h> (fixes prohibit_assert_without_use).
+       * libtelnet/shishi.c: Don't include <assert.h> (fixes
+       prohibit_assert_without_use).
 
 2009-11-15  Alfred M. Szmidt  <address@hidden>
 
@@ -274,14 +276,16 @@
        * ftp/ruserpass.c (ruserpass): Likewise.
        * ftpd/auth.c (auth_user, sgetcred): Likewise.
        * ftpd/ftpcmd.y (cmd_list, cmd, rcmd): Likewise.
-       * ftpd/ftpd.c (curdir, end_login, dolog, send_file_list): Likewise.
+       * ftpd/ftpd.c (curdir, end_login, dolog, send_file_list):
+       Likewise.
        * ftpd/pam.c (pam_user): Likewise.
        * ifconfig/if_index.c (if_freenameindex): Likewise.
        * inetd/inetd.c (freeconfig, getconfigent): Likewise.
        * libinetutils/argcv.c (int argcv_free): Likewise.
        * libls/fts.c (fts_close, fts_build): Likewise.
        * libtelnet/kerberos5.c (kerberos5_is_auth): Likewise.
-       * libtelnet/misc.c (auth_encrypt_init, auth_encrypt_user): Likewise.
+       * libtelnet/misc.c (auth_encrypt_init, auth_encrypt_user):
+       Likewise.
        * syslogd/syslogd.c (main, logmsg): Likewise.
        * telnet/commands.c (env_define, env_undefine, tn): Likewise.
        * telnetd/state.c (suboption): Likewise.

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

Summary of changes:
 ChangeLog                  |   96 +++++++++++++++++++++++++++++++------------
 NEWS                       |   18 +-------
 am/config_paths.m4         |    2 +-
 cfg.mk                     |    2 +
 configure.ac               |    2 +
 ftpd/logwtmp.c             |    7 +++-
 libinetutils/logwtmp.c     |    7 +++-
 libinetutils/utmp_init.c   |    7 +++-
 libinetutils/utmp_logout.c |   14 +++++-
 tests/Makefile.am          |    5 ++-
 uucpd/uucpd.c              |    4 +-
 11 files changed, 113 insertions(+), 51 deletions(-)


hooks/post-receive
-- 
GNU Inetutils 




reply via email to

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