--- jk_sockbuf.c.orig Wed May 30 12:42:28 2001
+++ jk_sockbuf.c Wed May 30 12:43:10 2001
@@ -224,7 +224,7 @@
sb->buf + sb->end,
SOCKBUF_SIZE - sb->end, 0);
- // 0 is EOF/SHUTDOWN, -1 is SOCK_ERROR
+ /* 0 is EOF/SHUTDOWN, -1 is SOCK_ERROR */
if (ret <= 0) {
return ret;
}
--- jk_util.c.orig Wed May 30 12:44:38 2001
+++ jk_util.c Wed May 30 15:20:45 2001
@@ -214,7 +214,7 @@
#ifdef WIN32
used = _snprintf(buf, HUGE_BUFFER_SIZE, "[%s (%d)]: ", f, line);
-#elif defined(NETWARE) // until we get a snprintf function
+#elif defined(NETWARE) /* until we get a snprintf function */
buf = (char *) malloc(HUGE_BUFFER_SIZE);
if (NULL == buf)
return -1;
@@ -230,7 +230,7 @@
va_start(args, fmt);
#ifdef WIN32
rc = _vsnprintf(buf + used, HUGE_BUFFER_SIZE - used, fmt, args);
-#elif defined(NETWARE) // until we get a vsnprintf function
+#elif defined(NETWARE) /* until we get a vsnprintf function */
rc = vsprintf(buf + used, fmt, args);
#else
rc = vsnprintf(buf + used, HUGE_BUFFER_SIZE - used, fmt, args);
--- jk_worker_list.h.orig Wed May 30 12:46:48 2001
+++ jk_worker_list.h Wed May 30 12:48:19 2001
@@ -123,4 +123,5 @@
{ NULL, NULL}
};
#endif /* _JK_WORKER_LIST_H */
-#endif /* _PLACE_WORKER_LIST_HERE */
\ No newline at end of file
+#endif /* _PLACE_WORKER_LIST_HERE */
+