This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.23-410-g7838d29


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 C Library master sources".

The branch, master has been updated
       via  7838d298d895f65247fb6b498db03a4336fc0506 (commit)
       via  ca7e8dda67490749c38581497f7ec7ffca1c3ba8 (commit)
      from  600c13bf7233b9612e772a94411b8d688b859142 (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=7838d298d895f65247fb6b498db03a4336fc0506

commit 7838d298d895f65247fb6b498db03a4336fc0506
Merge: ca7e8dd 600c13b
Author: Paul Pluzhnikov <ppluzhnikov@google.com>
Date:   Mon May 30 15:33:13 2016 -0700

    Merge branch 'master' of ssh://sourceware.org/git/glibc

diff --cc ChangeLog
index e17b2ca,fe7ef65..d1a3489
--- a/ChangeLog
+++ b/ChangeLog
@@@ -1,9 -1,12 +1,18 @@@
 +2016-05-30  Paul Pluzhnikov  <ppluzhnikov@google.com>
 +
 +	[BZ 19653]
 +	* inet/if_index.c (__protocol_available): Delete #if 0'd code.
 +	* inet/ruserpass.c (ruserpass): Delete #if 0'd code.
 +
+ 2016-05-30  Samuel Thibault  <samuel.thibault@ens-lyon.org>
+ 
+ 	* scripts/check-local-headers.sh (exclude): Add hurd/ihash.h, and
+ 	include .*-.*/ in addition to .*-.*-.*/ (i.e. i386-gnu in addition to
+ 	i386-linux-gnu).
+ 	* sysdeps/mach/hurd/configure.ac (libc_cv_ld_gnu_indirect_function):
+ 	Set to no.
+ 	* sysdeps/mach/hurd/configure: Refresh.
+ 
  2016-05-30  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
  
  	[BZ #20178]

http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=ca7e8dda67490749c38581497f7ec7ffca1c3ba8

commit ca7e8dda67490749c38581497f7ec7ffca1c3ba8
Author: Paul Pluzhnikov <ppluzhnikov@google.com>
Date:   Mon May 30 15:32:09 2016 -0700

    2016-05-30  Paul Pluzhnikov  <ppluzhnikov@google.com>
    
    	[BZ 19653]
    	* inet/if_index.c (__protocol_available): Delete #if 0'd code.
    	* inet/ruserpass.c (ruserpass): Delete #if 0'd code.

diff --git a/ChangeLog b/ChangeLog
index a33eca3..e17b2ca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2016-05-30  Paul Pluzhnikov  <ppluzhnikov@google.com>
+
+	[BZ 19653]
+	* inet/if_index.c (__protocol_available): Delete #if 0'd code.
+	* inet/ruserpass.c (ruserpass): Delete #if 0'd code.
+
 2016-05-30  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
 	[BZ #20178]
diff --git a/inet/if_index.c b/inet/if_index.c
index b55e427..d8054fc 100644
--- a/inet/if_index.c
+++ b/inet/if_index.c
@@ -58,14 +58,3 @@ __if_nameindex (void)
 weak_alias (__if_nameindex, if_nameindex)
 libc_hidden_weak (if_nameindex)
 stub_warning (if_nameindex)
-
-#if 0
-void
-internal_function
-__protocol_available (int *have_inet, int *have_inet6)
-{
-  /* By default we assume that IPv4 is available, IPv6 not.  */
-  *have_inet = 1;
-  *have_inet6 = 0;
-}
-#endif
diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index dafc330..5b2747b 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -192,81 +192,8 @@ next:
 			}
 			break;
 		case ACCOUNT:
-#if 0
-			if (fstat64(fileno(cfile), &stb) >= 0
-			    && (stb.st_mode & 077) != 0) {
-	warnx("Error: .netrc file is readable by others.");
-	warnx("Remove account or make file unreadable by others.");
-				goto bad;
-			}
-			if (token() && *aacct == 0) {
-				*aacct = malloc((unsigned) strlen(tokval) + 1);
-				(void) strcpy(*aacct, tokval);
-			}
-#endif
 			break;
 		case MACDEF:
-#if 0
-			if (proxy) {
-				(void) fclose(cfile);
-				return (0);
-			}
-			while ((c=getc_unlocked(cfile)) != EOF && c == ' '
-			       || c == '\t');
-			if (c == EOF || c == '\n') {
-				printf("Missing macdef name argument.\n");
-				goto bad;
-			}
-			if (macnum == 16) {
-				printf("Limit of 16 macros have already been defined\n");
-				goto bad;
-			}
-			tmp = macros[macnum].mac_name;
-			*tmp++ = c;
-			for (i=0; i < 8 && (c=getc_unlocked(cfile)) != EOF &&
-			    !isspace(c); ++i) {
-				*tmp++ = c;
-			}
-			if (c == EOF) {
-				printf("Macro definition missing null line terminator.\n");
-				goto bad;
-			}
-			*tmp = '\0';
-			if (c != '\n') {
-				while ((c=getc_unlocked(cfile)) != EOF
-				       && c != '\n');
-			}
-			if (c == EOF) {
-				printf("Macro definition missing null line terminator.\n");
-				goto bad;
-			}
-			if (macnum == 0) {
-				macros[macnum].mac_start = macbuf;
-			}
-			else {
-				macros[macnum].mac_start = macros[macnum-1].mac_end + 1;
-			}
-			tmp = macros[macnum].mac_start;
-			while (tmp != macbuf + 4096) {
-				if ((c=getc_unlocked(cfile)) == EOF) {
-				printf("Macro definition missing null line terminator.\n");
-					goto bad;
-				}
-				*tmp = c;
-				if (*tmp == '\n') {
-					if (*(tmp-1) == '\0') {
-					   macros[macnum++].mac_end = tmp - 1;
-					   break;
-					}
-					*tmp = '\0';
-				}
-				tmp++;
-			}
-			if (tmp == macbuf + 4096) {
-				printf("4K macro buffer exceeded\n");
-				goto bad;
-			}
-#endif
 			break;
 		default:
 			warnx(_("Unknown .netrc keyword %s"), tokval);

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

Summary of changes:
 ChangeLog        |    6 ++++
 inet/if_index.c  |   11 --------
 inet/ruserpass.c |   73 ------------------------------------------------------
 3 files changed, 6 insertions(+), 84 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]