[dovecot-cvs] dovecot/src/lib-ntlm ntlm-byteorder.h,1.2,1.3
cras at dovecot.org
cras at dovecot.org
Fri Jun 16 13:26:17 EEST 2006
Update of /var/lib/cvs/dovecot/src/lib-ntlm
In directory talvi:/tmp/cvs-serv2990
Modified Files:
ntlm-byteorder.h
Log Message:
X68_64 CPU can do little-endian accesses itself. This patch updates
ntlm-byteorder.h to reflect this fact. Patch by Andrey Panin.
Index: ntlm-byteorder.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-ntlm/ntlm-byteorder.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ntlm-byteorder.h 14 Feb 2006 18:59:19 -0000 1.2
+++ ntlm-byteorder.h 16 Jun 2006 10:26:13 -0000 1.3
@@ -12,7 +12,7 @@
#ifndef __NTLM_BYTEORDER_H__
#define __NTLM_BYTEORDER_H__
-#if defined(__i386__) || defined(__vax__)
+#if defined(__i386__) || defined(__x86_64__) || defined(__vax__)
static inline uint16_t read_le16(const void *addr)
{
More information about the dovecot-cvs
mailing list