Fix indentation, no functional changes

This commit is contained in:
bapt 2015-09-08 19:25:15 +00:00
parent a04f5ff10f
commit 7519c8e26a

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