From owner-svn-ports-all@freebsd.org Thu Oct 3 17:45:40 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id ABB5113C12C; Thu, 3 Oct 2019 17:45:40 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46kgQX45J8z4RQc; Thu, 3 Oct 2019 17:45:40 +0000 (UTC) (envelope-from mi@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 70FFEFB27; Thu, 3 Oct 2019 17:45:40 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x93Hjeej059121; Thu, 3 Oct 2019 17:45:40 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x93Hje5x059120; Thu, 3 Oct 2019 17:45:40 GMT (envelope-from mi@FreeBSD.org) Message-Id: <201910031745.x93Hje5x059120@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Thu, 3 Oct 2019 17:45:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513679 - head/sysutils/fusefs-smbnetfs/files X-SVN-Group: ports-head X-SVN-Commit-Author: mi X-SVN-Commit-Paths: head/sysutils/fusefs-smbnetfs/files X-SVN-Commit-Revision: 513679 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Oct 2019 17:45:40 -0000 Author: mi Date: Thu Oct 3 17:45:39 2019 New Revision: 513679 URL: https://svnweb.freebsd.org/changeset/ports/513679 Log: Add a patch from upstream, fixing the author's typo in an option's name. It only affects users of libsecret, which is off by default -- thus no port-revision bump. Added: head/sysutils/fusefs-smbnetfs/files/patch-bug47 (contents, props changed) Added: head/sysutils/fusefs-smbnetfs/files/patch-bug47 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-smbnetfs/files/patch-bug47 Thu Oct 3 17:45:39 2019 (r513679) @@ -0,0 +1,12 @@ +See: + https://sourceforge.net/p/smbnetfs/git/ci/fc721fecd9ea47a671cfa3acc4d2d0127bfdfc8c/ + +--- src/reconfigure.c 2018-01-04 15:59:38.000000000 -0500 ++++ src/reconfigure.c 2019-10-03 09:25:22.227842000 -0400 +@@ -295,5 +295,5 @@ + #ifdef HAVE_LIBSECRET + /* auth-libsecret.h */ +- if (strcasecmp(option, "use_libsecter") == 0) ++ if (strcasecmp(option, "use_libsecret") == 0) + return reconfigure_set_boolean(value, libsecret_enable); + if (strcasecmp(option, "libsecret_timeout") == 0)