summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG1
-rw-r--r--modules/pam_pwdb/md5.h4
-rw-r--r--modules/pam_unix/md5.h4
3 files changed, 1 insertions, 8 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e3ff71b4..dec92f0e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -35,6 +35,7 @@ Where you should replace XXXXX with a bug-id.
0.74: please submit patches for this section with actual code/doc
patches!
+* md5.h ia64 fixes for pam_unix and pam_pwdb (Bug 127700 - agmorgan)
* removed requirement for c++ from the configure{.in,} files (Bug
128298 - agmorgan)
* removed subdirectories from man page redirections (124396 - baggins)
diff --git a/modules/pam_pwdb/md5.h b/modules/pam_pwdb/md5.h
index 279ce46f..75c4dbac 100644
--- a/modules/pam_pwdb/md5.h
+++ b/modules/pam_pwdb/md5.h
@@ -1,11 +1,7 @@
#ifndef MD5_H
#define MD5_H
-#ifdef __alpha
typedef unsigned int uint32;
-#else
-typedef unsigned long uint32;
-#endif
struct MD5Context {
uint32 buf[4];
diff --git a/modules/pam_unix/md5.h b/modules/pam_unix/md5.h
index 469e5bd1..103f168a 100644
--- a/modules/pam_unix/md5.h
+++ b/modules/pam_unix/md5.h
@@ -2,11 +2,7 @@
#ifndef MD5_H
#define MD5_H
-#ifdef __alpha
typedef unsigned int uint32;
-#else
-typedef unsigned long uint32;
-#endif
struct MD5Context {
uint32 buf[4];