[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] r13669: Remove extraneous commas in compat.c (in tor/trunk: . src/common)



Author: nickm
Date: 2008-02-21 22:23:20 -0500 (Thu, 21 Feb 2008)
New Revision: 13669

Modified:
   tor/trunk/
   tor/trunk/src/common/compat.c
Log:
 r18358@catbus:  nickm | 2008-02-21 22:21:57 -0500
 Remove extraneous commas in compat.c



Property changes on: tor/trunk
___________________________________________________________________
 svk:merge ticket from /tor/trunk [r18358] on 8246c3cf-6607-4228-993b-4d95d33730f1

Modified: tor/trunk/src/common/compat.c
===================================================================
--- tor/trunk/src/common/compat.c	2008-02-22 02:55:02 UTC (rev 13668)
+++ tor/trunk/src/common/compat.c	2008-02-22 03:23:20 UTC (rev 13669)
@@ -779,7 +779,7 @@
 #ifdef MS_WINDOWS
   if (limit > DEFAULT_MAX_CONNECTIONS) {
     log_warn(LD_CONFIG,
-             "We do not support more than %lu file descriptors",
+             "We do not support more than %lu file descriptors"
              "on Windows. Tried to raise to %lu.",
              DEFAULT_MAX_CONNECTIONS, limit);
     return -1;
@@ -787,7 +787,7 @@
   limit = DEFAULT_MAX_CONNECTIONS;
 #elif defined(CYGWIN) || defined(__CYGWIN__)
   if (limit > CYGWIN_MAX_CONNECTIONS) {
-    log_warn(LD_CONFIG, "We do not support more than %lu file descriptors",
+    log_warn(LD_CONFIG, "We do not support more than %lu file descriptors"
              "when using Cygwin. Tried to raise to %lu.",
              CYGWIN_MAX_CONNECTIONS, limit);
     return -1;
@@ -795,7 +795,7 @@
   limit = CYGWIN_MAX_CONNECTIONS;
 #elif defined(IPHONE)
   if (limit > IPHONE_MAX_CONNECTIONS) {
-    log_warn(LD_CONFIG, "We do not support more than %lu file descriptors",
+    log_warn(LD_CONFIG, "We do not support more than %lu file descriptors"
              "on iPhone. Tried to raise to %lu.",
              IPHONE_MAX_CONNECTIONS, limit);
     return -1;