compiler complains in build log:
svr-auth.c: In function 'checkusername':
svr-auth.c:315:8: warning: extra tokens at end of #endif directive [-Wendif-labels]
#endif HAVE_GETGROUPLIST
^~~~~~~~~~~~~~~~~
while this warning is harmless, let's fix it.
cherry-pick upstream commit
1ae4237920c3bd7f2fa6958d2a390f6693852285
Signed-off-by: Konstantin Demin <rockdrilla@gmail.com>
--- /dev/null
+--- a/svr-auth.c
++++ b/svr-auth.c
+@@ -312,7 +312,7 @@ static int checkusername(const char *use
+ return DROPBEAR_FAILURE;
+ }
+ }
+-#endif HAVE_GETGROUPLIST
++#endif /* HAVE_GETGROUPLIST */
+
+ TRACE(("shell is %s", ses.authstate.pw_shell))
+