changeset 6718:634fcd865d57

* time_r.c (copy_string_result): Remove, as it is no longer used.
author Eric Blake <ebb9@byu.net>
date Sat, 25 Mar 2006 04:36:14 +0000
parents 72afe7281123
children d8b144efd883
files lib/ChangeLog lib/time_r.c
diffstat 2 files changed, 4 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,7 @@
+2006-03-24  Eric Blake  <ebb9@byu.net>
+
+	* time_r.c (copy_string_result): Remove, as it is no longer used.
+
 2006-03-24  Simon Josefsson  <jas@extundo.com>
 
 	* base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
--- a/lib/time_r.c
+++ b/lib/time_r.c
@@ -26,14 +26,6 @@
 
 #include <string.h>
 
-static char *
-copy_string_result (char *dest, char const *src)
-{
-  if (! src)
-    return 0;
-  return strcpy (dest, src);
-}
-
 static struct tm *
 copy_tm_result (struct tm *dest, struct tm const *src)
 {