svn commit: r489516 - head/mail/dovecot/files

Larry Rosenman ler at FreeBSD.org
Sun Jan 6 17:55:59 UTC 2019


Author: ler
Date: Sun Jan  6 17:55:58 2019
New Revision: 489516
URL: https://svnweb.freebsd.org/changeset/ports/489516

Log:
  mail/dovecot: Fix previous commit.
  
  I missed a character typing the patch.
  
  Pointy Hat: ler

Modified:
  head/mail/dovecot/files/patch-src_lib-master_master-service.c

Modified: head/mail/dovecot/files/patch-src_lib-master_master-service.c
==============================================================================
--- head/mail/dovecot/files/patch-src_lib-master_master-service.c	Sun Jan  6 17:46:53 2019	(r489515)
+++ head/mail/dovecot/files/patch-src_lib-master_master-service.c	Sun Jan  6 17:55:58 2019	(r489516)
@@ -5,7 +5,7 @@
  		/* Initialize stats-client early so it can see all events. */
  		value = getenv(DOVECOT_STATS_WRITER_SOCKET_PATH);
 -		if (value != NULL)
-+		if (value != NULL && *value = '\0')
++		if (value != NULL && *value != '\0')
  			service->stats_client = stats_client_init(value, FALSE);
  	}
  


More information about the svn-ports-head mailing list