diff options
author | William Grzybowski <wg@FreeBSD.org> | 2014-07-30 16:26:08 +0000 |
---|---|---|
committer | William Grzybowski <wg@FreeBSD.org> | 2014-07-30 16:26:08 +0000 |
commit | ab08960b0b63b0b15dc2044a378d4433cfe11e3d (patch) | |
tree | ab4450a216e34fab853ac09f5e7435f2934e7bb6 /net-mgmt/docsis/files/patch-md5.h | |
parent | 383100cfc77306991405b112a8c0f02123b9355e (diff) |
Notes
Diffstat (limited to 'net-mgmt/docsis/files/patch-md5.h')
-rw-r--r-- | net-mgmt/docsis/files/patch-md5.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/net-mgmt/docsis/files/patch-md5.h b/net-mgmt/docsis/files/patch-md5.h deleted file mode 100644 index b82cd66a30f8..000000000000 --- a/net-mgmt/docsis/files/patch-md5.h +++ /dev/null @@ -1,22 +0,0 @@ -# $FreeBSD$ ---- src/md5.h.orig 2004-03-17 07:09:31.000000000 -0800 -+++ src/md5.h 2009-05-07 19:41:20.000000000 -0700 -@@ -22,14 +22,16 @@ - documentation and/or software. - */ - -+#include <stdint.h> -+ - /* POINTER defines a generic pointer type */ - typedef unsigned char *POINTER; - - /* UINT2 defines a two byte word */ --typedef unsigned short int UINT2; -+typedef uint16_t UINT2; - - /* UINT4 defines a four byte word */ --typedef unsigned long int UINT4; -+typedef uint32_t UINT4; - - /* MD5 context. */ - typedef struct { |