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 { typedef enum {
HASH_UNKNOWN, HASH_UNKNOWN,
HASH_SHA256, HASH_SHA256,
} hash_t; } hash_t;
struct fingerprint { struct fingerprint {
hash_t type; hash_t type;
char *name; char *name;
char hash[BUFSIZ]; char hash[BUFSIZ];
STAILQ_ENTRY(fingerprint) next; STAILQ_ENTRY(fingerprint) next;
}; };
STAILQ_HEAD(fingerprint_list, fingerprint); STAILQ_HEAD(fingerprint_list, fingerprint);