Recommented vprintf out. Not strictly needed but I should figure out what to do here eventually.
Modified: trunk/reactos/drivers/lib/oskittcp/include/freebsd/src/sys/sys/systm.h
--- trunk/reactos/drivers/lib/oskittcp/include/freebsd/src/sys/sys/systm.h 2005-03-04 04:15:46 UTC (rev 13813) +++ trunk/reactos/drivers/lib/oskittcp/include/freebsd/src/sys/sys/systm.h 2005-03-04 04:57:42 UTC (rev 13814) @@ -134,7 +134,9 @@
va_list arg; int i; va_start(arg, fmt);
+#ifndef __NTDRIVER__
i = vprintf ( fmt, arg );
+#endif
va_end(arg); return i; }