about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2021-07-05 11:52:06 +0200
committerMichael Vetter <jubalh@iodoru.org>2021-07-05 11:52:06 +0200
commit5022aeb3370253d6b7067c04e2bb57d510077d31 (patch)
tree44022c5aa15bfd0a9189a21284110ff7fd91dfab
parent7de261b1c28ba0099ae49c0cc7254b4dae850807 (diff)
downloadprofani-tty-5022aeb3370253d6b7067c04e2bb57d510077d31.tar.gz
Fix log rotation
Fix https://github.com/profanity-im/profanity/issues/1518
See
https://github.com/profanity-im/profanity/issues/1518#issuecomment-870581988
-rw-r--r--src/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/log.c b/src/log.c
index 66fe8abe..ecc1038b 100644
--- a/src/log.c
+++ b/src/log.c
@@ -250,7 +250,7 @@ _rotate_log_file(void)
 
     rename(log_file, log_file_new);
 
-    log_init(log_get_filter(), log_file);
+    log_init(log_get_filter(), NULL);
 
     free(log_file_new);
     free(log_file);
125'>125 126 127 128 129 130 131 132 133 134 135 136 137 138 139