Index: /branches/rel_apv_10_7/usr/click/bin/openssh/build.sh
===================================================================
--- /branches/rel_apv_10_7/usr/click/bin/openssh/build.sh	(revision 39388)
+++ /branches/rel_apv_10_7/usr/click/bin/openssh/build.sh	(working copy)
@@ -21,6 +21,7 @@
 	patch -p1 < ../array.patch
 	patch -p1 < ../weak_mac.patch
 	patch -p1 < ../CVE-2023-48795-mitigation.patch
+	patch -p1 < ../sshd-auth.patch
 	if [ $? -ne 0 ]
 	then
 		echo "array_patch failed!"
Index: /branches/rel_apv_10_7/usr/click/bin/openssh/sshd-auth.patch
===================================================================
--- /branches/rel_apv_10_7/usr/click/bin/openssh/sshd-auth.patch	(revision 0)
+++ /branches/rel_apv_10_7/usr/click/bin/openssh/sshd-auth.patch	(working copy)
@@ -0,0 +1,22 @@
+diff --git a/sshd-auth.c b/sshd-auth.c
+--- a/sshd-auth.c
++++ b/sshd-auth.c
+@@ -488,7 +488,7 @@
+ 
+ 	/* Parse command-line arguments. */
+ 	while ((opt = getopt(ac, av,
+-	    "C:E:b:c:f:g:h:k:o:p:u:46DGQRTdeiqrtV")) != -1) {
++	    "C:E:b:c:f:g:h:k:o:p:u:46DGQRTdeiqrtVs")) != -1) {
+ 		switch (opt) {
+ 		case '4':
+ 			options.address_family = AF_INET;
+@@ -525,6 +525,9 @@
+ 		case 'r':
+ 			/* ignore */
+ 			break;
++		case 's':
++			options.synconfig = 1;
++			break;
+ 		case 'R':
+ 			rexeced_flag = 1;
+ 			break;
