summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2002-01-14 06:17:31 +0000
committerGeorge Lebl <jirka@src.gnome.org>2002-01-14 06:17:31 +0000
commit8a4ff67778195c0c54f42b0ef02970bf018e0a9f (patch)
treee7fffe411eba01fb7095c7698825d53ac83d46cc
parent1eaa7368ed0b6382cfa9ea895d7b6621db5aeed1 (diff)
downloadgdm-8a4ff67778195c0c54f42b0ef02970bf018e0a9f.tar.gz
Release 2.3.90.1GDM_2_3_90_1
Sun Jan 13 21:58:36 2002 George Lebl <jirka@5z.com> * Release 2.3.90.1 * daemon/md5.c: a bit of cleanup
-rw-r--r--ChangeLog6
-rw-r--r--NEWS6
-rw-r--r--daemon/md5.c6
3 files changed, 15 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e3bae82b..bec72afb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sun Jan 13 21:58:36 2002 George Lebl <jirka@5z.com>
+
+ * Release 2.3.90.1
+
+ * daemon/md5.c: a bit of cleanup
+
2002-01-12 Kjartan Maraas <kmaraas@gnome.org>
* daemon/gdm.c: Fix a typo in a user visible string.
diff --git a/NEWS b/NEWS
index b4180ba8..919add91 100644
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,12 @@ Ahh news...
- Face browser now works again
+- Fixed some typos and message cleanups (Kjartan Maraas)
+
+- Updated translations (Christian Rose, Duarte Loreto, Stanislav Visnovsky,
+ Zbigniew Chyla, Pablo Saratxaga, GNOME PL Team, Kjartan Maraas,
+ Jarkko Ranta)
+
2.2.5.4 stuff:
- SECURITY FIX! Make sure the egid is reset to the user gid before
diff --git a/daemon/md5.c b/daemon/md5.c
index 6ffb752a..6b55ec3b 100644
--- a/daemon/md5.c
+++ b/daemon/md5.c
@@ -19,6 +19,7 @@
*
*/
+#include "config.h"
#include <string.h> /* for memcpy() */
#ifdef __LINUX__
@@ -31,12 +32,11 @@
#define byteReverse(buf, len) /* Nothing */
#else
-void byteReverse(unsigned char *buf, unsigned longs);
-
/*
* Note: this code is harmless on little-endian machines.
*/
-void byteReverse(unsigned char *buf, unsigned longs)
+static void
+byteReverse(unsigned char *buf, unsigned longs)
{
uint32 t;
do {