diff options
author | emanuele-f <faranda@ntop.org> | 2020-03-25 14:07:19 +0100 |
---|---|---|
committer | emanuele-f <faranda@ntop.org> | 2020-03-25 14:07:19 +0100 |
commit | 1b8f7ed101ae68573689cf816929185bd28594f5 (patch) | |
tree | 0da5fa5291010b8e8676836d0f6c28638d96723c | |
parent | 9cf016c5f1f6141c9ae798bba8d5ab2930e417b9 (diff) |
Fix API version generation
-rw-r--r-- | configure.seed | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.seed b/configure.seed index 568be4f1b..6fbe687cf 100644 --- a/configure.seed +++ b/configure.seed @@ -44,7 +44,7 @@ if test -d ".git"; then : A=`git log src/include/ndpi_typedefs.h|wc -l` B=`git log src/include/ndpi_protocol_ids.h|wc -l` C=`git log src/include/ndpi_api.h.in|wc -l` - NDPI_API_VERSION=$((A+B+B)) + NDPI_API_VERSION=$((A+B+C)) else GIT_RELEASE="${PACKAGE_VERSION}" GIT_DATE=`date -u -r CHANGELOG.md` |