From owner-svn-ports-head@freebsd.org Mon Feb 6 10:48:11 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D36BCD38AA; Mon, 6 Feb 2017 10:48:11 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE35B1534; Mon, 6 Feb 2017 10:48:10 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v16Am9US014230; Mon, 6 Feb 2017 10:48:09 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v16Am9VN014228; Mon, 6 Feb 2017 10:48:09 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201702061048.v16Am9VN014228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Mon, 6 Feb 2017 10:48:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433482 - in head/sysutils/bsdstats: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Feb 2017 10:48:11 -0000 Author: cpm Date: Mon Feb 6 10:48:09 2017 New Revision: 433482 URL: https://svnweb.freebsd.org/changeset/ports/433482 Log: - Add missing ${CR} variable in 300.statistics.in - Bump PORTREVISION PR: 216808 Submitted by: Marc Fournier Approved by: Yuri Victorovich (maintainer) Modified: head/sysutils/bsdstats/Makefile head/sysutils/bsdstats/files/300.statistics.in Modified: head/sysutils/bsdstats/Makefile ============================================================================== --- head/sysutils/bsdstats/Makefile Mon Feb 6 10:20:07 2017 (r433481) +++ head/sysutils/bsdstats/Makefile Mon Feb 6 10:48:09 2017 (r433482) @@ -3,6 +3,7 @@ PORTNAME= bsdstats PORTVERSION= 6.0 +PORTREVISION= 1 CATEGORIES= sysutils DISTFILES= Modified: head/sysutils/bsdstats/files/300.statistics.in ============================================================================== --- head/sysutils/bsdstats/files/300.statistics.in Mon Feb 6 10:20:07 2017 (r433481) +++ head/sysutils/bsdstats/files/300.statistics.in Mon Feb 6 10:48:09 2017 (r433482) @@ -159,7 +159,7 @@ do_http_request() { if [ -n "${http_header_proxy_auth}" ]; then txt="${txt}${CR}${NL}Proxy-Authorization: ${http_header_proxy_auth}"; fi txt="${txt}${CR}${NL}User-Agent: bsdstats-${CURR_VERSION}" txt="${txt}${CR}${NL}Connection: close" - if [ -n "${content_type}" ]; then txt="${txt}${NL}Content-Type: ${content_type}"; fi + if [ -n "${content_type}" ]; then txt="${txt}${CR}${NL}Content-Type: ${content_type}"; fi if [ -n "${body}" ]; then txt="${txt}${CR}${NL}Content-Length: ${#body}"; fi txt="${txt}${CR}${NL}${CR}${NL}${body}"