diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-24 06:11:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-24 06:11:27 +0000 |
commit | 0c571040e2f0b9735c649463881d3498e58a010e (patch) | |
tree | d27878925e2b90553e230d6feea5ec005d281ffb /crypt | |
parent | f4942eca1e4db6087bd128e6bce3e490c3ff89f2 (diff) | |
download | glibc-0c571040e2f0b9735c649463881d3498e58a010e.tar glibc-0c571040e2f0b9735c649463881d3498e58a010e.tar.gz glibc-0c571040e2f0b9735c649463881d3498e58a010e.tar.bz2 glibc-0c571040e2f0b9735c649463881d3498e58a010e.zip |
Update.
* crypt/md5-crypt.c (free_mem): Fix typo (constructor ->
destructor). Reported by Solar Designer <solar@false.com>.
Diffstat (limited to 'crypt')
-rw-r--r-- | crypt/md5-crypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypt/md5-crypt.c b/crypt/md5-crypt.c index 66eda28d0c..2ca1021307 100644 --- a/crypt/md5-crypt.c +++ b/crypt/md5-crypt.c @@ -257,7 +257,7 @@ __md5_crypt (const char *key, const char *salt) static void -__attribute__ ((__constructor__)) +__attribute__ ((__destructor__)) free_mem (void) { free (buffer); |