-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regression in 6238 prevents compilation #6596
Labels
needs triage
The issue will be triaged during scrum
Comments
Firstyear
added a commit
to Firstyear/389-ds-base
that referenced
this issue
Feb 7, 2025
Bug Description: The addition of the json auditlog feature caused a regresion in compilation due to the use of labels in a declaration. Fix Description: Enclose the switch/case in braces to resolve the compilation issue. fixes: 389ds#6596 Author: William Brown <[email protected]> Review by: ???
Firstyear
added a commit
to Firstyear/389-ds-base
that referenced
this issue
Feb 7, 2025
Bug Description: The addition of the json auditlog feature caused a regresion in compilation due to the use of labels in a declaration. Fix Description: Enclose the switch/case in braces to resolve the compilation issue. fixes: 389ds#6596 Author: William Brown <[email protected]> Review by: ???
Firstyear
added a commit
that referenced
this issue
Feb 7, 2025
Bug Description: The addition of the json auditlog feature caused a regresion in compilation due to the use of labels in a declaration. Fix Description: Enclose the switch/case in braces to resolve the compilation issue. fixes: #6596 Author: William Brown <[email protected]> Review by: @droideck Thanks!
Firstyear
added a commit
that referenced
this issue
Feb 7, 2025
Bug Description: The addition of the json auditlog feature caused a regresion in compilation due to the use of labels in a declaration. Fix Description: Enclose the switch/case in braces to resolve the compilation issue. fixes: #6596 Author: William Brown <[email protected]> Review by: @droideck Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#6238 uses a C syntax that may only be available in C17, which causes this compiler error in older gcc versions.
The text was updated successfully, but these errors were encountered: