Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Jan 2012 21:45:24 +0000 (UTC)
From:      Pawel Jakub Dawidek <pjd@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r230395 - head/sbin/hastd
Message-ID:  <201201202145.q0KLjO1V060039@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pjd
Date: Fri Jan 20 21:45:24 2012
New Revision: 230395
URL: http://svn.freebsd.org/changeset/base/230395

Log:
  Remove unused token 'port'.
  
  MFC after:	3 days

Modified:
  head/sbin/hastd/parse.y
  head/sbin/hastd/token.l

Modified: head/sbin/hastd/parse.y
==============================================================================
--- head/sbin/hastd/parse.y	Fri Jan 20 20:02:01 2012	(r230394)
+++ head/sbin/hastd/parse.y	Fri Jan 20 21:45:24 2012	(r230395)
@@ -369,7 +369,7 @@ yy_config_free(struct hastd_config *conf
 }
 %}
 
-%token CONTROL PIDFILE LISTEN PORT REPLICATION CHECKSUM COMPRESSION METAFLUSH
+%token CONTROL PIDFILE LISTEN REPLICATION CHECKSUM COMPRESSION METAFLUSH
 %token TIMEOUT EXEC EXTENTSIZE RESOURCE NAME LOCAL REMOTE SOURCE ON OFF
 %token FULLSYNC MEMSYNC ASYNC NONE CRC32 SHA256 HOLE LZF
 %token NUM STR OB CB

Modified: head/sbin/hastd/token.l
==============================================================================
--- head/sbin/hastd/token.l	Fri Jan 20 20:02:01 2012	(r230394)
+++ head/sbin/hastd/token.l	Fri Jan 20 21:45:24 2012	(r230395)
@@ -51,7 +51,6 @@ int lineno;
 control			{ DP; return CONTROL; }
 pidfile			{ DP; return PIDFILE; }
 listen			{ DP; return LISTEN; }
-port			{ DP; return PORT; }
 replication		{ DP; return REPLICATION; }
 checksum		{ DP; return CHECKSUM; }
 compression		{ DP; return COMPRESSION; }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201201202145.q0KLjO1V060039>