Skip to content

Commit a1bda23

Browse files
committed
1) updated version string to new format.
2) macos with pam was failing CI tests because it explicitly needs a module named hpnsshd. I think I modifed setup-ci.sh to handle that.
1 parent e0f87f5 commit a1bda23

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.github/setup_ci.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ esac
2626
TARGETS=$@
2727

2828
INSTALL_FIDO_PPA="no"
29+
COPY_PAM_MODULE="no"
2930
export DEBIAN_FRONTEND=noninteractive
3031

3132
#echo "Setting up for '$TARGETS'"
@@ -85,6 +86,7 @@ for TARGET in $TARGETS; do
8586
esac
8687
;;
8788
*pam)
89+
COPY_PAM_MODULE="yes"
8890
PACKAGES="$PACKAGES libpam0g-dev"
8991
;;
9092
sk)
@@ -139,6 +141,14 @@ if [ "yes" = "$INSTALL_FIDO_PPA" ]; then
139141
sudo apt-add-repository -y ppa:yubico/stable
140142
fi
141143

144+
#need to copy the pam modules for sshd to hpnsshd on
145+
#macos with pam.
146+
if [ "yes" = "$COPY_PAM_MODULE" ]; then
147+
if [ `uname` = "Darwin" }; then
148+
sudo cp /etc/pam.d/sshd /etc/pam.d/hpnsshd
149+
fi
150+
fi
151+
142152
tries=3
143153
while [ ! -z "$PACKAGES" ] && [ "$tries" -gt "0" ]; do
144154
case "$PACKAGER" in

cipher-chachapoly-libcrypto-mt.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,6 @@ chachapoly_free_mt(struct chachapoly_ctx_mt * ctx_mt)
318318

319319
/* Join advancement thread if it exists */
320320
if (ctx_mt->adv_tid != ctx_mt->self_tid) {
321-
debug_f("Killed advancement thread");
322321
pthread_join(ctx_mt->adv_tid, NULL);
323322
ctx_mt->adv_tid = ctx_mt->self_tid;
324323
}

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
#define SSH_VERSION "OpenSSH_9.3"
44

55
#define SSH_PORTABLE "p1"
6-
#define SSH_HPN "-hpn18v1RC1"
6+
#define SSH_HPN "-hpn18.1.0-RC1"
77
#define SSH_RELEASE SSH_VERSION SSH_PORTABLE SSH_HPN

0 commit comments

Comments
 (0)