md5: Untabify declarations.

MFC after:	1 week
Sponsored by:	Klara, Inc.
Reviewed by:	imp, allanjude, markj
Differential Revision:	https://reviews.freebsd.org/D43991
This commit is contained in:
Dag-Erling Smørgrav 2024-02-20 23:04:45 +01:00
parent c05533d97a
commit 702f133fa1

View file

@ -303,17 +303,17 @@ static unsigned int numrecs;
static void
gnu_check(const char *checksumsfile)
{
FILE *inp;
char *linebuf = NULL;
size_t linecap;
ssize_t linelen;
int lineno;
char *filename;
char *hashstr;
struct chksumrec *rec;
const char *digestname;
size_t digestnamelen;
size_t hashstrlen;
FILE *inp;
char *linebuf = NULL;
size_t linecap;
ssize_t linelen;
int lineno;
char *filename;
char *hashstr;
struct chksumrec *rec;
const char *digestname;
size_t digestnamelen;
size_t hashstrlen;
struct stat st;
if (strcmp(checksumsfile, "-") == 0)
@ -399,17 +399,17 @@ int
main(int argc, char *argv[])
{
#ifdef HAVE_CAPSICUM
cap_rights_t rights;
fileargs_t *fa = NULL;
cap_rights_t rights;
fileargs_t *fa = NULL;
#endif
const struct option *longopts;
const char *shortopts;
FILE *f;
int i, opt;
char *p, *string = NULL;
char buf[HEX_DIGEST_LENGTH];
size_t len;
struct chksumrec *rec;
FILE *f;
int i, opt;
char *p, *string = NULL;
char buf[HEX_DIGEST_LENGTH];
size_t len;
struct chksumrec *rec;
if ((progname = strrchr(argv[0], '/')) == NULL)
progname = argv[0];