Skip to content
Snippets Groups Projects
Commit 5d55ff03 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Bumped version to 1.0.4rc2 and also journal and compiled zone magic bytes.

Magic bytes bumped due to checksum algorithm changes.
parent c671d4d3
Branches
Tags
No related merge requests found
# -*- Autoconf -*-
AC_PREREQ([2.65])
AC_INIT([knot], [1.0.4rc1], [knot-dns@labs.nic.cz])
AC_INIT([knot], [1.0.4rc2], [knot-dns@labs.nic.cz])
AM_INIT_AUTOMAKE([gnu -Wall -Werror])
AC_CONFIG_SRCDIR([src/knot/main.c])
AC_CONFIG_HEADERS([src/config.h])
......
......@@ -129,7 +129,7 @@ typedef int (*journal_apply_t)(journal_t *j, journal_node_t *n);
#define JOURNAL_NCOUNT 1024 /*!< Default node count. */
/* HEADER = magic, crc, max_entries, qhead, qtail */
#define JOURNAL_HSIZE (MAGIC_LENGTH + sizeof(crc_t) + sizeof(uint16_t) * 3)
#define JOURNAL_MAGIC {'k', 'n', 'o', 't', '1', '0', '2'}
#define JOURNAL_MAGIC {'k', 'n', 'o', 't', '1', '0', '4'}
/*!
* \brief Create new journal.
......
......@@ -38,7 +38,7 @@ enum {
};
/*! \brief Magic identifier: { "knot", maj_ver, min_ver, revision } */
#define MAGIC_BYTES {'k', 'n', 'o', 't', '1', '0', '3'}
#define MAGIC_BYTES {'k', 'n', 'o', 't', '1', '0', '4'}
/*!
* \brief Dumps given zone to binary file.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment