Move defines from header.
authorMilan Broz <gmazyland@gmail.com>
Sat, 9 Jun 2012 21:26:45 +0000 (23:26 +0200)
committerMilan Broz <gmazyland@gmail.com>
Sat, 9 Jun 2012 21:26:45 +0000 (23:26 +0200)
lib/setup.c
lib/verity/verity.c
lib/verity/verity.h
lib/verity/verity_hash.c
src/veritysetup.c

index bcd22df..ae7fc44 100644 (file)
@@ -1141,7 +1141,6 @@ int crypt_format(struct crypt_device *cd,
        else if (isVERITY(type))
                r = _crypt_format_verity(cd, uuid, params);
        else {
-               /* FIXME: allow plugins here? */
                log_err(cd, _("Unknown crypt device type %s requested.\n"), type);
                r = -EINVAL;
        }
index 7cfb811..f9fbe81 100644 (file)
@@ -32,6 +32,8 @@
 #include "verity.h"
 #include "internal.h"
 
+#define VERITY_SIGNATURE "verity\0\0"
+
 #define NEW_SB 1
 
 #ifndef NEW_SB
index 273739b..e37ed76 100644 (file)
@@ -23,9 +23,6 @@
 #include <unistd.h>
 #include "config.h"
 
-#define VERITY_SIGNATURE       "verity\0\0"
-#define VERITY_MAX_LEVELS      63
-
 struct crypt_device;
 struct crypt_params_verity;
 
index e7ef93d..0e2c48c 100644 (file)
@@ -26,6 +26,8 @@
 #include "verity.h"
 #include "internal.h"
 
+#define VERITY_MAX_LEVELS      63
+
 static unsigned get_bits_up(size_t u)
 {
        unsigned i = 0;
index eb5ec0d..bb437b2 100644 (file)
@@ -31,7 +31,7 @@
 
 #define PACKAGE_VERITY "veritysetup"
 
-static int use_superblock = 1; /* FIXME: no superblock not supported */
+static int use_superblock = 1;
 
 static const char *hash_algorithm = NULL;
 static int hash_type = 1;