-
Notifications
You must be signed in to change notification settings - Fork 7.4k
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
PPPoS unable to set authentication,will always fail. (IDFGH-5284) #7047
Comments
We're also seeing this issue on 4.3-beta3 |
@david-cermak |
Thanks for reporting this bug! |
v4.3-rc still includes this bug. |
Unfortunately, the v4.3 release does not include this fix. |
I have postpone my own software release just due to this bug. Now I have to deliver a dirty one for my customers unfortunately. What was the reason for not including this fix in the 4.3 release? |
Environment
git describe --tags
to find it):// v4.3-beta3-195-g6be10fab0
xtensa-esp32-elf-gcc --version
to find it):// xtensa-esp32-elf-gcc (crosstool-NG esp-2020r3) 8.4.0
Problem Description
Unable to set authentication for PPPoS.
The call to 'esp_netif_ppp_set_auth' will always fail and return invalid parameter even though the parameters are correct.
The evaluation of macro '_IS_NETIF_POINT2POINT_TYPE' evaluates to true if the parameters are correct.
This is the implementation which not work:
And should be changed to something like this (Notice the '!' before the macro '_IS_NETIF_POINT2POINT_TYPE'):
Expected Behavior
Should not return error if the parameters are correct
Actual Behavior
return error if the parameters are correct
The text was updated successfully, but these errors were encountered: