diff --git a/libjava/ChangeLog b/libjava/ChangeLog
index 3e1fddacc224b2d8b70dcf1dc85859ebfebc2c04..76bd80594e5d22a17be191d3df8353eda1338ef6 100644
--- a/libjava/ChangeLog
+++ b/libjava/ChangeLog
@@ -1,3 +1,8 @@
+2002-12-10  Tom Tromey  <tromey@redhat.com>
+
+	* include/win32.h: Fixed typo in "DISABLE_JAVA_NET".
+	From Laurent Bardet <l.bardet@magic.fr>.
+
 2002-12-09  Tom Tromey  <tromey@redhat.com>
 
 	* include/win32.h (_Jv_platform_solib_prefix): New define.
diff --git a/libjava/include/win32.h b/libjava/include/win32.h
index f05f30d12944eb1f8409d78402e39330ce8ceeef..d4c0ab6c18d395a7ab4fe587f6f22aaa30475ed0 100644
--- a/libjava/include/win32.h
+++ b/libjava/include/win32.h
@@ -26,7 +26,7 @@ details.  */
 #define _Jv_platform_solib_prefix ""
 #define _Jv_platform_solib_suffix ".dll"
 
-#ifndef DISBALE_JAVA_NET
+#ifndef DISABLE_JAVA_NET
 
 // these errors cannot occur on Win32
 #define ENOTCONN 0
@@ -36,7 +36,7 @@ details.  */
 #define ENOPROTOOPT 109
 #endif
 
-#endif // DISBALE_JAVA_NET
+#endif // DISABLE_JAVA_NET
 
 extern void _Jv_platform_initialize (void);
 extern void _Jv_platform_initProperties (java::util::Properties*);
@@ -48,7 +48,7 @@ _Jv_platform_close_on_exec (jint)
   // Ignore.
 }
 
-#ifndef DISBALE_JAVA_NET
+#ifndef DISABLE_JAVA_NET
 
 static inline int
 _Jv_socket (int domain, int type, int protocol)
@@ -98,7 +98,7 @@ _Jv_read(int s, void *buf, int len)
   return ::recv (s, (char*) buf, len, 0);
 }
 
-#endif /* DISBALE_JAVA_NET */
+#endif /* DISABLE_JAVA_NET */
 
 #define HAVE_BACKTRACE