svn commit: r287572 - head/usr.sbin/pkg

Baptiste Daroussin bapt at FreeBSD.org
Tue Sep 8 19:25:16 UTC 2015


Author: bapt
Date: Tue Sep  8 19:25:15 2015
New Revision: 287572
URL: https://svnweb.freebsd.org/changeset/base/287572

Log:
  Fix indentation, no functional changes

Modified:
  head/usr.sbin/pkg/pkg.c

Modified: head/usr.sbin/pkg/pkg.c
==============================================================================
--- head/usr.sbin/pkg/pkg.c	Tue Sep  8 18:44:12 2015	(r287571)
+++ head/usr.sbin/pkg/pkg.c	Tue Sep  8 19:25:15 2015	(r287572)
@@ -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);


More information about the svn-src-head mailing list