]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
don't add a spurious newline before [truncated]
authorRoger Dingledine <arma@torproject.org>
Wed, 18 Aug 2004 08:52:12 +0000 (08:52 +0000)
committerRoger Dingledine <arma@torproject.org>
Wed, 18 Aug 2004 08:52:12 +0000 (08:52 +0000)
svn:r2282

src/common/log.c

index 8d4bb74d36afacda7db86cf8327dbf145665fa62..21bf444cdb28cb1b9bcccf4bcc925d1ef985cd48 100644 (file)
@@ -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 {