Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Mar 2015 09:54:25 +0100
From:      Roman Divacky <rdivacky@freebsd.org>
To:        Xin LI <delphij@FreeBSD.org>
Cc:        svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org
Subject:   Re: svn commit: r280767 - head/sbin/md5
Message-ID:  <20150328085425.GA99099@vlakno.cz>
In-Reply-To: <201503271823.t2RIN7sX000292@svn.freebsd.org>
References:  <201503271823.t2RIN7sX000292@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
> Modified: head/sbin/md5/md5.c
> ==============================================================================
> --- head/sbin/md5/md5.c	Fri Mar 27 17:36:22 2015	(r280766)
> +++ head/sbin/md5/md5.c	Fri Mar 27 18:23:06 2015	(r280767)
> @@ -91,7 +91,7 @@ typedef union {
>  
>  /* algorithm function table */
>  
> -struct Algorithm_t Algorithm[] = {
> +static struct Algorithm_t Algorithm[] = {
>  	{ "md5", "MD5", &MD5TestOutput, (DIGEST_Init*)&MD5Init,
>  		(DIGEST_Update*)&MD5_Update, (DIGEST_End*)&MD5End,
>  		&MD5Data, &MD5File },
> @@ -282,7 +282,7 @@ MDTimeTrial(Algorithm_t *alg)
>   * Digests a reference suite of strings and prints the results.
>   */

Can this be static const?



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