Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 May 2019 23:22:10 +0300
From:      Konstantin Belousov <kostikbel@gmail.com>
To:        Alan Somers <asomers@FreeBSD.org>
Cc:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   Re: svn commit: r348007 - projects/fuse2/lib/libc/gen
Message-ID:  <20190520202210.GT2748@kib.kiev.ua>
In-Reply-To: <201905201936.x4KJaaIC023310@repo.freebsd.org>
References:  <201905201936.x4KJaaIC023310@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, May 20, 2019 at 07:36:36PM +0000, Alan Somers wrote:
> +static bool
> +are_fusefs(const char *fsname, const char *vfc_name)
> +{
> +	const char fusefs[] = "fusefs";
> +	const char fusefs_dot[] = "fusefs.";
Both arrays should be static.

> +
> +	return (strncmp(fsname, fusefs_dot, strlen(fusefs_dot)) == 0 &&
strlen() is not needed, you can use sizeof() - 1.

> +	    strcmp(fusefs, vfc_name) == 0);
> +}



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