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.15-361-g09a3453


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  09a3453f637006538b45f9da69d1895d26a15473 (commit)
      from  98bb2f1cd2b6eb794ecaf5ce4fcc3c79ee4df3e5 (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=09a3453f637006538b45f9da69d1895d26a15473

commit 09a3453f637006538b45f9da69d1895d26a15473
Author: David S. Miller <davem@davemloft.net>
Date:   Tue Mar 13 00:33:58 2012 -0700

    Add missing string.h include for strcpy calls.
    
    	* nss/nss_db/db-init.c: Include string.h

diff --git a/ChangeLog b/ChangeLog
index e9ea42a..dc93fce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-03-13  David S. Miller  <davem@davemloft.net>
+
+	* nss/nss_db/db-init.c: Include string.h
+
 2012-03-12  David S. Miller  <davem@davemloft.net>
 
 	* sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
diff --git a/nss/nss_db/db-init.c b/nss/nss_db/db-init.c
index 906331a..d23e8f8 100644
--- a/nss/nss_db/db-init.c
+++ b/nss/nss_db/db-init.c
@@ -1,5 +1,5 @@
 /* Initialization in nss_db module.
-   Copyright (C) 2011 Free Software Foundation, Inc.
+   Copyright (C) 2011, 2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -18,7 +18,7 @@
 
 #include <paths.h>
 #include <nscd/nscd.h>
-
+#include <string.h>
 
 static union
 {

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

Summary of changes:
 ChangeLog            |    4 ++++
 nss/nss_db/db-init.c |    4 ++--
 2 files changed, 6 insertions(+), 2 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]