# HG changeset patch # User Eric Blake # Date 1143261374 0 # Node ID 634fcd865d57d0de6be5c8fd85f1ebf73638b437 # Parent 72afe728112376a161635530d1bb28c385e2637d * time_r.c (copy_string_result): Remove, as it is no longer used. diff --git a/lib/ChangeLog b/lib/ChangeLog --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2006-03-24 Eric Blake + + * time_r.c (copy_string_result): Remove, as it is no longer used. + 2006-03-24 Simon Josefsson * base64.c: Fix problems reported by Eric Blake , diff --git a/lib/time_r.c b/lib/time_r.c --- a/lib/time_r.c +++ b/lib/time_r.c @@ -26,14 +26,6 @@ #include -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) {