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.20-249-g6933c27


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  6933c27e9c280f5b3d64227d756243d993eba727 (commit)
      from  cc0d3b1a7f78fe05cec0451d792711ed81446519 (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=6933c27e9c280f5b3d64227d756243d993eba727

commit 6933c27e9c280f5b3d64227d756243d993eba727
Author: Wilco Dijkstra <wdijkstr@arm.com>
Date:   Mon Nov 24 20:38:01 2014 +0000

    Fix typo.

diff --git a/string/strcpy.c b/string/strcpy.c
index 91f9cc6..94ca1df 100644
--- a/string/strcpy.c
+++ b/string/strcpy.c
@@ -24,6 +24,6 @@
 char *
 strcpy (char *dest, const char *src)
 {
-  return memcpy (dest, src, strlen (src) + 1));
+  return memcpy (dest, src, strlen (src) + 1);
 }
 libc_hidden_builtin_def (strcpy)

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

Summary of changes:
 string/strcpy.c |    2 +-
 1 files changed, 1 insertions(+), 1 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]