From owner-svn-ports-head@freebsd.org Thu Mar 15 03:03:07 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A4E7F32540; Thu, 15 Mar 2018 03:03:07 +0000 (UTC) (envelope-from bar@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2BB5C873B0; Thu, 15 Mar 2018 03:03:07 +0000 (UTC) (envelope-from bar@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 26B8F10A33; Thu, 15 Mar 2018 03:03:07 +0000 (UTC) (envelope-from bar@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2F337tD062638; Thu, 15 Mar 2018 03:03:07 GMT (envelope-from bar@FreeBSD.org) Received: (from bar@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2F337nA062637; Thu, 15 Mar 2018 03:03:07 GMT (envelope-from bar@FreeBSD.org) Message-Id: <201803150303.w2F337nA062637@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bar set sender to bar@FreeBSD.org using -f From: Barbara Guida Date: Thu, 15 Mar 2018 03:03:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464553 - head/net-p2p/amule/files X-SVN-Group: ports-head X-SVN-Commit-Author: bar X-SVN-Commit-Paths: head/net-p2p/amule/files X-SVN-Commit-Revision: 464553 X-SVN-Commit-Repository: ports 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.25 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: Thu, 15 Mar 2018 03:03:07 -0000 Author: bar Date: Thu Mar 15 03:03:06 2018 New Revision: 464553 URL: https://svnweb.freebsd.org/changeset/ports/464553 Log: Attempt to fix on HEAD. Added: head/net-p2p/amule/files/patch-src_webserver_src_php_syntree.cpp (contents, props changed) Added: head/net-p2p/amule/files/patch-src_webserver_src_php_syntree.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/amule/files/patch-src_webserver_src_php_syntree.cpp Thu Mar 15 03:03:06 2018 (r464553) @@ -0,0 +1,11 @@ +--- src/webserver/src/php_syntree.cpp.orig 2016-09-16 09:55:07.000000000 +0200 ++++ src/webserver/src/php_syntree.cpp 2018-03-15 03:38:18.205741000 +0100 +@@ -926,7 +926,7 @@ + switch(val->type) { + case PHP_VAL_NONE: buff[0] = 0; break; + case PHP_VAL_BOOL: +- case PHP_VAL_INT: snprintf(buff, sizeof(buff), "%"PRIu64, val->int_val); break; ++ case PHP_VAL_INT: snprintf(buff, sizeof(buff), "%" PRIu64, val->int_val); break; + case PHP_VAL_FLOAT: snprintf(buff, sizeof(buff), "%.02f", val->float_val); break; + case PHP_VAL_STRING: return; + case PHP_VAL_ARRAY: {