Module Name:src
Committed By: gutteridge
Date: Sat May 6 02:12:11 UTC 2023
Modified Files:
src/tests/usr.bin/sed: t_sed.sh
Log Message:
t_sed.sh: add a test case for relative addressing
At one time, this didn't always work correctly, per PR bin/49109. Test
case from http
Module Name:src
Committed By: gutteridge
Date: Sat May 6 02:12:11 UTC 2023
Modified Files:
src/tests/usr.bin/sed: t_sed.sh
Log Message:
t_sed.sh: add a test case for relative addressing
At one time, this didn't always work correctly, per PR bin/49109. Test
case from http
Module Name:src
Committed By: gutteridge
Date: Sat May 6 02:07:42 UTC 2023
Modified Files:
src/tests/usr.bin/sed: t_sed.sh
Log Message:
t_sed.sh: fix grammar, spelling, and formatting issues (NFC)
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/tests/us
Module Name:src
Committed By: gutteridge
Date: Sat May 6 02:07:42 UTC 2023
Modified Files:
src/tests/usr.bin/sed: t_sed.sh
Log Message:
t_sed.sh: fix grammar, spelling, and formatting issues (NFC)
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/tests/us
06 lukem Exp $");
#endif /* not lint */
/*
@@ -1439,8 +1439,8 @@ ftp_connect(int sock, const struct socka
}
pfd[0].revents = 0;
rv = ftp_poll(pfd, 1, timeout);
- /* loop until poll ! EINTR */
- } while (rv == -1 && errno == EINTR);
+ /* loop until poll !EINTR && !EAGAIN */
+ } while (rv == -1 && (errno == EINTR || errno == EAGAIN));
if (rv == 0) { /* poll (connect) timed out */
errno = ETIMEDOUT;
Index: src/usr.bin/ftp/version.h
diff -u src/usr.bin/ftp/version.h:1.96 src/usr.bin/ftp/version.h:1.97
--- src/usr.bin/ftp/version.h:1.96 Sat Feb 25 12:07:25 2023
+++ src/usr.bin/ftp/version.h Fri May 5 15:46:06 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: version.h,v 1.96 2023/02/25 12:07:25 mlelstv Exp $ */
+/* $NetBSD: version.h,v 1.97 2023/05/05 15:46:06 lukem Exp $ */
/*-
* Copyright (c) 1999-2023 The NetBSD Foundation, Inc.
@@ -34,5 +34,5 @@
#endif
#ifndef FTP_VERSION
-#define FTP_VERSION "20230225"
+#define FTP_VERSION "20230505"
#endif
Module Name:src
Committed By: lukem
Date: Fri May 5 15:46:06 UTC 2023
Modified Files:
src/usr.bin/ftp: ftp.c ssl.c util.c version.h
Log Message:
add timeout for ssl connect
Implement a timeout for SSL connection setup, using -q QUITTIME,
defaulting to 60 seconds.
SSL_con
Module Name:src
Committed By: bouyer
Date: Fri May 5 09:34:10 UTC 2023
Modified Files:
src/sys/arch/arm/nxp: imx6sx_clk.c
Log Message:
remove commented out entries, leftover from the imx6q ccm code.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arc
Module Name:src
Committed By: bouyer
Date: Fri May 5 09:34:10 UTC 2023
Modified Files:
src/sys/arch/arm/nxp: imx6sx_clk.c
Log Message:
remove commented out entries, leftover from the imx6q ccm code.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arc
Module Name:src
Committed By: bouyer
Date: Fri May 5 09:29:35 UTC 2023
Modified Files:
src/sys/arch/arm/nxp: imx6sx_clk.c
Log Message:
Fix typo, preventing i2c4 from attaching
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/nxp/imx6sx_clk.c
Module Name:src
Committed By: bouyer
Date: Fri May 5 09:29:35 UTC 2023
Modified Files:
src/sys/arch/arm/nxp: imx6sx_clk.c
Log Message:
Fix typo, preventing i2c4 from attaching
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/nxp/imx6sx_clk.c
10 matches
Mail list logo