X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/11753d04cb1e5d004829adadb855adc7125d5d93..974aae61bbb8c05e0d0fc1a95b419fe596423fd8:/src/md5.c diff --git a/src/md5.c b/src/md5.c index 3f5013ddf3..039213fd76 100644 --- a/src/md5.c +++ b/src/md5.c @@ -15,8 +15,8 @@ You should have received a copy of the GNU Library General Public License along with the GNU C Library; see the file COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ + write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /* Written by Ulrich Drepper , 1995. */ @@ -38,7 +38,7 @@ #ifdef _LIBC # include # if __BYTE_ORDER == __BIG_ENDIAN -# define WORDS_BIGENDIAN 1 +# define WORDS_BIG_ENDIAN 1 # endif /* We need to keep the namespace clean so define the MD5 function protected using leading __ . */ @@ -53,7 +53,7 @@ #include "md5.h" -#ifdef WORDS_BIGENDIAN +#ifdef WORDS_BIG_ENDIAN # define SWAP(n) \ (((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24)) #else @@ -441,3 +441,6 @@ md5_process_block (buffer, len, ctx) ctx->C = C; ctx->D = D; } + +/* arch-tag: 60084f04-b434-42cb-9d2b-e91df01f4325 + (do not change this comment) */