svn commit: r492374 - branches/2019Q1/mail/dovecot/files

Larry Rosenman ler at FreeBSD.org
Thu Feb 7 16:26:26 UTC 2019


Author: ler
Date: Thu Feb  7 16:26:25 2019
New Revision: 492374
URL: https://svnweb.freebsd.org/changeset/ports/492374

Log:
  MFH: r489516
  
  mail/dovecot: Fix previous commit.
  
  I missed a character typing the patch.
  
  Pointy Hat: ler
  
  Approved by:	ports-secteam (blanket, fix errors, joneum, original MFH)

Modified:
  branches/2019Q1/mail/dovecot/files/patch-src_lib-master_master-service.c
Directory Properties:
  branches/2019Q1/   (props changed)

Modified: branches/2019Q1/mail/dovecot/files/patch-src_lib-master_master-service.c
==============================================================================
--- branches/2019Q1/mail/dovecot/files/patch-src_lib-master_master-service.c	Thu Feb  7 16:26:24 2019	(r492373)
+++ branches/2019Q1/mail/dovecot/files/patch-src_lib-master_master-service.c	Thu Feb  7 16:26:25 2019	(r492374)
@@ -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-branches mailing list