Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
ipmi-config: fix incorrect output of IPv6_Dynamic_Address_Source_Type
  • Loading branch information
chu11 committed Feb 21, 2024
1 parent bfec368 commit 41d0d70
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
2024-02-21 Albert Chu <chu11@llnl.gov>

* ipmi-config/ipmi-config-category-core-lan6-conf-section.c
(ipv6_dynamic_address_source_type_checkout): Fix incorrect output
of IPv6_Dynamic_Address_Source_Type.

2024-01-27 Albert Chu <chu11@llnl.gov>

* configure.ac: Remove duplicate inb/outb declaration check. Could
Expand Down
2 changes: 1 addition & 1 deletion ipmi-config/ipmi-config-category-core-lan6-conf-section.c
Expand Up @@ -1227,7 +1227,7 @@ ipv6_dynamic_address_source_type_checkout (ipmi_config_state_data_t *state_data,

if (ipmi_config_section_update_keyvalue_output (state_data,
kv,
get_dynamic_address_source_type_string (ipv6_data.source)) < 0)
get_dynamic_address_source_type_string (ipv6_data.source_type)) < 0)
return (IPMI_CONFIG_ERR_FATAL_ERROR);

rv = IPMI_CONFIG_ERR_SUCCESS;
Expand Down

0 comments on commit 41d0d70

Please sign in to comment.