summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-26 15:21:01 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-26 15:21:01 +0000
commit66a8c6f708481fdcd156d925bc9ca674ee1dc75c (patch)
treea7f367e7e7fb9a6b06f5f71a7b1393cfea15a6c4 /c/src/lib/libbsp/i386
parentCorrected spacing problem. (diff)
downloadrtems-66a8c6f708481fdcd156d925bc9ca674ee1dc75c.tar.bz2
Patch from Emmanuel Raguet <raguet@crf.canon.fr> to fix a small bug where
the receive buffer size was 16 bytes too small.
Diffstat (limited to 'c/src/lib/libbsp/i386')
-rw-r--r--c/src/lib/libbsp/i386/pc386/dec21140/dec21140.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/dec21140/dec21140.c b/c/src/lib/libbsp/i386/pc386/dec21140/dec21140.c
index 221cd0da26..3156bbd937 100644
--- a/c/src/lib/libbsp/i386/pc386/dec21140/dec21140.c
+++ b/c/src/lib/libbsp/i386/pc386/dec21140/dec21140.c
@@ -105,7 +105,7 @@ struct MD {
/*
* Receive buffer size -- Allow for a full ethernet packet including CRC
*/
-#define RBUF_SIZE 1520
+#define RBUF_SIZE 1536
#define ET_MINLEN 60 /* minimum message length */