]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 24 Aug 2000 06:11:27 +0000 (06:11 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 24 Aug 2000 06:11:27 +0000 (06:11 +0000)
* crypt/md5-crypt.c (free_mem): Fix typo (constructor ->
destructor).  Reported by Solar Designer <solar@false.com>.

ChangeLog
crypt/md5-crypt.c

index 34a4771d075806abd0e4f2e28071c0c54c520ece..51b249e600430ff22b2519ab08170bfb0d3c78a5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-08-23  Ulrich Drepper  <drepper@redhat.com>
 
+       * crypt/md5-crypt.c (free_mem): Fix typo (constructor ->
+       destructor).  Reported by Solar Designer <solar@false.com>.
+
        * iconv/gconv_conf.c (add_module): Remove some unneeded code to
        avoid adding double slashes.
 
index 66eda28d0cb7cbeebc10d7b3c2d9d05bca7bbdd4..2ca1021307e7248cf178a9bf553141935bd79bc4 100644 (file)
@@ -257,7 +257,7 @@ __md5_crypt (const char *key, const char *salt)
 
 
 static void
-__attribute__ ((__constructor__))
+__attribute__ ((__destructor__))
 free_mem (void)
 {
   free (buffer);