diff options
author | bapt <bapt@FreeBSD.org> | 2015-09-08 19:25:15 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-09-08 19:25:15 +0000 |
commit | 7519c8e26aaaec89b53c4bc692ab6ab08daec933 (patch) | |
tree | 3769f55acf2d50b7353df6866ba2d85117ba6704 /usr.sbin/pkg | |
parent | a04f5ff10fa08082786be8b74bc44881f3dd4e41 (diff) | |
download | FreeBSD-src-7519c8e26aaaec89b53c4bc692ab6ab08daec933.zip FreeBSD-src-7519c8e26aaaec89b53c4bc692ab6ab08daec933.tar.gz |
Fix indentation, no functional changes
Diffstat (limited to 'usr.sbin/pkg')
-rw-r--r-- | usr.sbin/pkg/pkg.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/pkg/pkg.c b/usr.sbin/pkg/pkg.c index e242638..de7465b 100644 --- a/usr.sbin/pkg/pkg.c +++ b/usr.sbin/pkg/pkg.c @@ -66,15 +66,15 @@ struct sig_cert { }; typedef enum { - HASH_UNKNOWN, - HASH_SHA256, + HASH_UNKNOWN, + HASH_SHA256, } hash_t; struct fingerprint { - hash_t type; - char *name; - char hash[BUFSIZ]; - STAILQ_ENTRY(fingerprint) next; + hash_t type; + char *name; + char hash[BUFSIZ]; + STAILQ_ENTRY(fingerprint) next; }; STAILQ_HEAD(fingerprint_list, fingerprint); |