Update to 20141122.

Add a patch from naddy that prevents items from being written
twice with logging enabled.
This commit is contained in:
Adam Weinberger 2014-11-23 15:29:39 +00:00
parent 6eefcd7381
commit b0dd30635e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=373157
3 changed files with 15 additions and 3 deletions

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= ircii
PORTVERSION= 20141028
PORTVERSION= 20141122
CATEGORIES= irc ipv6
MASTER_SITES= http://ircii.warped.com/

View file

@ -1,2 +1,2 @@
SHA256 (ircii-20141028.tar.bz2) = fc439005954c0ba488174942f327ff2a0f59eb4bdeb952daae5e0ee0bbdc63ea
SIZE (ircii-20141028.tar.bz2) = 613642
SHA256 (ircii-20141122.tar.bz2) = 74c20bbc59d960038b4629c88df2d3f93a7d81a343bc0eaf51ca418ace52d622
SIZE (ircii-20141122.tar.bz2) = 593290

View file

@ -0,0 +1,12 @@
--- source/window.c.orig 2014-11-23 15:23:37 UTC
+++ source/window.c
@@ -4509,7 +4509,8 @@ window_get_query_nick(Window *window)
void
add_to_window_log(Window *window, u_char *str)
{
- add_to_log(window->log_fp, str);
+ if (window->log)
+ add_to_log(window->log_fp, str);
}
LastlogInfo *