You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create localoptions.h with this contents: #define DROPBEAR_SVR_PUBKEY_OPTIONS 0
Run ./configure --enable-bundled-libtom && make clean && make -j1 V=s
The "-j1" is very important! It doesn't happen with "-j2".
I hope you can reproduce it on your system.
Error:
src/svr-authpubkey.c: In function 'svr_auth_pubkey':
src/svr-authpubkey.c:195:26: error: 'struct AuthState' has no member named 'pubkey_options'
195 | if (ses.authstate.pubkey_options && ses.authstate.pubkey_options->no_touch_required_flag) {
Thanks.
The text was updated successfully, but these errors were encountered:
@M95D Not sure if someone is working on it, but I believe this patch fixes it. Should go through test workflow though.
The problem was that under undefined DROPBEAR_SVR_PUBKEY_OPTIONS (hence, undefined DROPBEAR_SVR_PUBKEY_OPTIONS_BUILT), struct AuthState would omit the declaration of pubkey_options and pubkey_info, even though svr_auth_pubkey and checkpubkey functions would still use them.
Hi.
New error. This one is harder to reproduce.
#define DROPBEAR_SVR_PUBKEY_OPTIONS 0
./configure --enable-bundled-libtom && make clean && make -j1 V=s
The "-j1" is very important! It doesn't happen with "-j2".
I hope you can reproduce it on your system.
Error:
Thanks.
The text was updated successfully, but these errors were encountered: