summaryrefslogtreecommitdiff
path: root/src/common/compat.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2008-02-22 03:26:35 +0000
committerNick Mathewson <nickm@torproject.org>2008-02-22 03:26:35 +0000
commit031c21277637f6a9c287b5118348d82a966d5fee (patch)
treeeab64dde83b96b86ee862c297b13d2f02239b157 /src/common/compat.c
parent688b7ddf83ce7cfbcd0af9d55b802259b64c0337 (diff)
downloadtor-031c21277637f6a9c287b5118348d82a966d5fee.tar.gz
tor-031c21277637f6a9c287b5118348d82a966d5fee.zip
r18360@catbus: nickm | 2008-02-21 22:26:32 -0500
Make torint.h define ssize_t more robustly; add spaces to last patch svn:r13670
Diffstat (limited to 'src/common/compat.c')
-rw-r--r--src/common/compat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/compat.c b/src/common/compat.c
index 3d8f6c317b..c52d1ecd44 100644
--- a/src/common/compat.c
+++ b/src/common/compat.c
@@ -779,7 +779,7 @@ set_max_file_descriptors(rlim_t limit, int *max_out)
#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 @@ set_max_file_descriptors(rlim_t limit, int *max_out)
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 @@ set_max_file_descriptors(rlim_t limit, int *max_out)
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;