Module Name:    src
Committed By:   kre
Date:           Fri Jan 20 03:16:40 UTC 2017

Modified Files:
        src/usr.sbin/npf/npfctl: npf_parse.y

Log Message:
Add missing ; - hopefully unbreak build.


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/usr.sbin/npf/npfctl/npf_parse.y

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/npf/npfctl/npf_parse.y
diff -u src/usr.sbin/npf/npfctl/npf_parse.y:1.42 src/usr.sbin/npf/npfctl/npf_parse.y:1.43
--- src/usr.sbin/npf/npfctl/npf_parse.y:1.42	Thu Jan 19 20:18:17 2017
+++ src/usr.sbin/npf/npfctl/npf_parse.y	Fri Jan 20 03:16:40 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: npf_parse.y,v 1.42 2017/01/19 20:18:17 rmind Exp $	*/
+/*	$NetBSD: npf_parse.y,v 1.43 2017/01/20 03:16:40 kre Exp $	*/
 
 /*-
  * Copyright (c) 2011-2017 The NetBSD Foundation, Inc.
@@ -72,7 +72,7 @@ yyerror(const char *fmt, ...)
 		char *dst = ecalloc(1, len * 4 + 1);
 
 		strvisx(dst, context, len, VIS_WHITE|VIS_CSTYLE);
-		context = dst
+		context = dst;
 #endif
 		fprintf(stderr, " near '%s'", context);
 	}

Reply via email to