From: Roger Dingledine Date: Wed, 18 Aug 2004 08:52:12 +0000 (+0000) Subject: don't add a spurious newline before [truncated] X-Git-Tag: tor-0.0.8rc1~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40f9f94794db4d9ce3f9dc9470b1192908cb2788;p=thirdparty%2Ftor.git don't add a spurious newline before [truncated] svn:r2282 --- diff --git a/src/common/log.c b/src/common/log.c index 8d4bb74d36..21bf444cdb 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -22,8 +22,8 @@ #define snprintf _snprintf #endif -#define TRUNCATED_STR "\n[truncated]" -#define TRUNCATED_STR_LEN 12 +#define TRUNCATED_STR "[truncated]" +#define TRUNCATED_STR_LEN 11 /** Information for a single logfile; only used in log.c */ typedef struct logfile_t {