Fix indentation, no functional changes

This commit is contained in:
Baptiste Daroussin 2015-09-08 19:25:15 +00:00
parent b5e4c5c456
commit b50756c759
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287572

View File

@ -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);