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  31c990c3651ba0c56cbd731ff6156b576769e1f6 (commit)
      from  e5cd5d3ba8a55f91bd39ae1ea776f3a349ec004a (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=31c990c3651ba0c56cbd731ff6156b576769e1f6


commit 31c990c3651ba0c56cbd731ff6156b576769e1f6
Author: Mats Erik Andersson <[email protected]>
Date:   Mon Nov 21 00:24:17 2011 +0100

    Missing inclusion, prototype, and doc update.

diff --git a/ChangeLog b/ChangeLog
index 4b86fb7..d148d59 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-11-21  Mats Erik Andersson <[email protected]>
+
+       * libtelnet/getent.c [HAVE_CGETENT]: Include <stdlib.h>.
+       * telnet/sys_bsd.c [SIGINFO] (sendayt): Missing declaration.
+       * doc/inetutils.texi (telnet invocation): Minor fixes.
+       * TODO: Updated.
+
 2011-11-19  Mats Erik Andersson <[email protected]>
 
        * TODO: Updated.
diff --git a/TODO b/TODO
index 751629b..99b8d91 100644
--- a/TODO
+++ b/TODO
@@ -14,7 +14,8 @@ supdup: A telnet client/daemon like program for the SUPDUP 
protocol;
   running.  And I don't think there is an actual daemon program for
   GNU systems at all (ITS has one though :-).
 
-Add framework for tests.
+Add framework for tests.  How can tests needing root priviliges
+be maintained, automated, or rewritten?
 
 Function for parsing [USER@]HOSTNAME[:PORT], that returns each value
 in a structure.  Handle IP (v4 and v6) numbers as well.  And make
@@ -90,6 +91,10 @@ unconditionally in a lot of places, even if an autoconf test 
is
 already done for them, &c.
 
 Testing and debugging the encryption and authentication modes.
+Include all relevant options in the Texinfo source.
+
+Remove support for kerberos_v4. Make sure kerberos_v5 and shishi
+do not interfere when building on systems where both are present.
 
 Add more utilities:
   Tcpdump
diff --git a/doc/inetutils.texi b/doc/inetutils.texi
index 568b597..771042b 100644
--- a/doc/inetutils.texi
+++ b/doc/inetutils.texi
@@ -1981,7 +1981,8 @@ previous state.
 @node telnet invocation
 @chapter @command{telnet}: User interface to TELNET
 
-Login to remote system HOST (optionally, on service port PORT)
+Login to a remote system HOST, optionally using a (non-standard)
+service port PORT:
 
 @example
 telnet [@var{OPTION}...] [@var{HOST} [@var{PORT}]]
@@ -2006,7 +2007,7 @@ Attempt automatic login.
 
 @item -c
 @itemx --no-rc
-Don't read the user's .telnetrc file.
+Do not read the user's file @file{$HOME/.telnetrc}.
 
 @item -d
 @itemx --debug
@@ -2014,7 +2015,7 @@ Turn on debugging.
 
 @item -e CHAR
 @itemx --escape=CHAR
-Use CHAR as an escape character.
+Use CHAR as escape character.
 
 @item -E
 @itemx --no-escape
@@ -2022,7 +2023,7 @@ Use no escape character.
 
 @item -K
 @itemx --no-login
-Don't automatically login to the remote system.
+Do not automatically login to the remote system.
 
 @item -l USER
 @itemx --user=USER
@@ -2038,11 +2039,18 @@ Record trace information into FILE.
 
 @item -r
 @itemx --rlogin
-Use a user-interface similar to rlogin.
+Display a user-interface similar to that of @command{rlogin}.
+
+@item -x
+@itemx --encrypt
+If possible, encrypt the data stream.
 
 @item -X ATYPE
 @itemx --disable-auth=ATYPE
-Disable type ATYPE authentication.
+Disable authentication of type ATYPE.
+Use this option multiple times if more than one type
+is to be disabled.  Standard choices are @samp{null},
+@samp{kerberos_v4}, and @samp{kerberos_v5}.
 @end table
 
 @node inetd invocation
diff --git a/libtelnet/getent.c b/libtelnet/getent.c
index 606b61c..c846a60 100644
--- a/libtelnet/getent.c
+++ b/libtelnet/getent.c
@@ -50,6 +50,8 @@
 #include <config.h>
 
 #ifdef HAVE_CGETENT
+# include <stdlib.h>
+
 static char *area;
 #endif
 
diff --git a/telnet/sys_bsd.c b/telnet/sys_bsd.c
index fc14211..cb1343e 100644
--- a/telnet/sys_bsd.c
+++ b/telnet/sys_bsd.c
@@ -72,6 +72,7 @@
 
 #ifdef SIGINFO
 extern void ayt_status ();
+extern void sendayt ();
 #endif
 
 int tout,                      /* Output file descriptor */

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

Summary of changes:
 ChangeLog          |    7 +++++++
 TODO               |    7 ++++++-
 doc/inetutils.texi |   20 ++++++++++++++------
 libtelnet/getent.c |    2 ++
 telnet/sys_bsd.c   |    1 +
 5 files changed, 30 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
GNU Inetutils 

_______________________________________________
Commit-inetutils mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/commit-inetutils

Reply via email to