commit | 96e48da0712fefafdf0c122486c6dce17bba9e68 | [log] [tgz] |
---|---|---|
author | Radek Krejci <rkrejci@cesnet.cz> | Fri Sep 04 13:18:06 2020 +0200 |
committer | Radek Krejci <rkrejci@cesnet.cz> | Fri Sep 04 13:18:06 2020 +0200 |
tree | bd787b134e58c651adbef4644540a28a1513bb70 | |
parent | 460937d31b51b0719ad15c7d4d3139aceaeb0f24 [diff] [blame] |
schema BUGFIX correct yang-version value for 1.0 Instead of "1.0", the correct value is just "1".
diff --git a/src/tree_schema.h b/src/tree_schema.h index 75cbfca..d94bf24 100644 --- a/src/tree_schema.h +++ b/src/tree_schema.h
@@ -1027,7 +1027,7 @@ */ typedef enum LYS_VERSION { LYS_VERSION_UNDEF = 0, /**< no specific version, YANG 1.0 as default */ - LYS_VERSION_1_0 = 1, /**< YANG 1.0 */ + LYS_VERSION_1_0 = 1, /**< YANG 1 (1.0) */ LYS_VERSION_1_1 = 2 /**< YANG 1.1 */ } LYS_VERSION;