OpenBSD/src EVMLSqdsys/arch/riscv64/include intr.h

   remove unneeded frame.h and riscvreg.h includes
VersionDeltaFile
1.8+1-5sys/arch/riscv64/include/intr.h
+1-51 files

OpenBSD/src AeCA0jRregress/usr.sbin/rpki-client/openssl Makefile

   rpki-client/openssl: eliminate pointless OpenSSL deprecation vomit
VersionDeltaFile
1.2+2-1regress/usr.sbin/rpki-client/openssl/Makefile
+2-11 files

OpenBSD/src 8LemL3Kregress/lib/libssl/rust-openssl Cargo.toml

   rust-openssl: set resolver="2" for workspace

   silences an annoying warning
VersionDeltaFile
1.2+1-0regress/lib/libssl/rust-openssl/Cargo.toml
+1-01 files

OpenBSD/src 4vVmrPIlib/libcrypto/ec ec_lib.c

   Unindent error check in EC_GROUP_set_generator()
VersionDeltaFile
1.69+5-5lib/libcrypto/ec/ec_lib.c
+5-51 files

OpenBSD/src mJ7gs2Hregress/sys/kern/signal Makefile

   Enable sig-stop3 regress test. It should no longer fail now.
VersionDeltaFile
1.7+2-1regress/sys/kern/signal/Makefile
+2-11 files

OpenBSD/src z8TnS1Lbin/ps ps.1

   Add PS_STOPPED to the flags
VersionDeltaFile
1.139+3-2bin/ps/ps.1
+3-21 files

OpenBSD/src f8TMw1osys/kern kern_exit.c kern_sig.c, sys/sys proc.h

   Indicate that a process has stopped by setting PS_STOPPED flag

   The checks in dowait6 and orphanpg using ps_mainproc are flawed and
   fail if the mainproc called pthread_exit before the other threads.
   Adding the flag in proc_stop_sweep is racy but the best we have right now.
   This fixes regress/sys/kern/signal/sig-stop3.

   OK mpi@
VersionDeltaFile
1.239+3-8sys/kern/kern_exit.c
1.375+5-4sys/sys/proc.h
1.342+4-1sys/kern/kern_sig.c
1.100+2-2sys/kern/kern_proc.c
+14-154 files

OpenBSD/src lb3vboQsys/kern kern_resource.c

   Fix runtime calculation. Assiging ts to spc_runtime does not work if ts
   is modified.
   OK tb@ jca@
VersionDeltaFile
1.92+5-5sys/kern/kern_resource.c
+5-51 files

OpenBSD/src Ibp4Nn5sys/kern kern_exit.c

   Use pr instead of p->p_p like everywhere else in exit1.
VersionDeltaFile
1.238+2-2sys/kern/kern_exit.c
+2-21 files

OpenBSD/src IsINrTUsys/arch/arm64/include pcb.h, sys/arch/riscv64/include pcb.h

   remove unneeded pte.h include
VersionDeltaFile
1.6+1-3sys/arch/arm64/include/pcb.h
1.4+1-3sys/arch/riscv64/include/pcb.h
+2-62 files

OpenBSD/src sfleTvnlib/libcrypto/ec ec_asn1.c

   Switch ec_asn1_group2parameters() to get0_{order,cofactor}()

   These are more ergonomic, result in more readable code, avoid a copy and
   we no longer ignore a possible memory allocation error due to API misdesign
   and bad code.

   ok jsing
VersionDeltaFile
1.73+14-11lib/libcrypto/ec/ec_asn1.c
+14-111 files

OpenBSD/src qoa1Y1Nlib/libcrypto/ec ec_lib.c ec_local.h

   Provide EC_GROUP_get0_cofactor() for internal use

   While this is public API in OpenSSL, there are no plans to expose it.

   ok jsing
VersionDeltaFile
1.68+7-1lib/libcrypto/ec/ec_lib.c
1.29+2-1lib/libcrypto/ec/ec_local.h
+9-22 files

OpenBSD/src ioxtHS5sys/net if_arp.h

   remove struct arpreq from net/if_arp.h

   unused since "rewrite to merge arp and routing tables"
   in CSRG if_ether.c 7.14 (Berkeley) 06/25/91

   used by SIOCSARP, SIOCGARP, SIOCDARP, OSIOCGARP ioctls in Net/2
   which were removed before 4.4BSD-Lite

   ok sthen@ who tested this with a ports build
VersionDeltaFile
1.8+1-16sys/net/if_arp.h
+1-161 files

OpenBSD/src 9lwHzNydistrib/i386/iso Makefile, etc/etc.i386 disktab

   grow i386 media a bit
VersionDeltaFile
1.36+3-3etc/etc.i386/disktab
1.36+2-2distrib/i386/iso/Makefile
+5-52 files

OpenBSD/src LSoLtZJusr.bin/ssh sshd_config.5

   mention SshdAuthPath option; ok djm@
VersionDeltaFile
1.376+9-2usr.bin/ssh/sshd_config.5
+9-21 files

OpenBSD/src 2Ivxo6Iusr.bin/tmux input.c

   Set ACS flag for REP. Reported by Romain Francoise, GitHub issue 4182.
VersionDeltaFile
1.230+7-3usr.bin/tmux/input.c
+7-31 files

OpenBSD/src 0I1YZNflib/libcrypto/ec ec_asn1.c

   Make NULL checks in ec_asn1_group2curve() explicit
VersionDeltaFile
1.72+5-3lib/libcrypto/ec/ec_asn1.c
+5-31 files

OpenBSD/src irY7awdregress/lib/libcrypto/ec ec_asn1_test.c

   Extend ec_asn1_test to check for correct curve coefficient encoding
VersionDeltaFile
1.4+50-5regress/lib/libcrypto/ec/ec_asn1_test.c
+50-51 files

OpenBSD/src fG87TM1lib/libcrypto/ec ec_asn1.c

   Fix field element encoding for elliptic curve coefficients

   SEC 1, section 2.3.5, is explicit that the encoding of an element of the
   field of definition for an elliptic curve needs to be a zero-padded octet
   string whose length matches the byte size of the field's degree. So use
   BN_bn2binpad() to fix this. Factor things into a simple helper to avoid
   copy-pasting.

   This gets rid of some of the most grotesque code in this file.

   ok jsing
VersionDeltaFile
1.71+36-45lib/libcrypto/ec/ec_asn1.c
+36-451 files

OpenBSD/src fHCHMNDlib/libcrypto/ec ec_asn1.c

   Drop an obvious comment and fix indent for setting the seed

   Also remove a pointless cast.

   ok jsing
VersionDeltaFile
1.70+3-4lib/libcrypto/ec/ec_asn1.c
+3-41 files

OpenBSD/src OT3SLbYlib/libcrypto/ec ec_asn1.c

   In ec_asn1_group2curve() rename ok to ret, per usual

   ok jsing
VersionDeltaFile
1.69+4-4lib/libcrypto/ec/ec_asn1.c
+4-41 files

OpenBSD/src 2qFPO02sys/arch/arm64/arm64 process_machdep.c, sys/arch/arm64/include pte.h

   remove unneeded vmparam.h include from pte.h
   include vmparam.h in process_machdep for USER_SPACE_BITS
VersionDeltaFile
1.10+1-3sys/arch/arm64/include/pte.h
1.4+1-3sys/arch/riscv64/include/pte.h
1.9+2-1sys/arch/arm64/arm64/process_machdep.c
+4-73 files

OpenBSD/src RuDgOXUsys/arch/amd64/amd64 acpi_machdep.c

   Fix build w/o SUSPEND option

   with tweaks from miod@

   ok miod@
VersionDeltaFile
1.112+4-4sys/arch/amd64/amd64/acpi_machdep.c
+4-41 files

OpenBSD/src E5aOuCisys/arch/arm64/include intr.h, sys/arch/armv7/include intr.h

   remove unneeded device.h include
VersionDeltaFile
1.23+1-2sys/arch/arm64/include/intr.h
1.15+1-2sys/arch/armv7/include/intr.h
1.7+1-2sys/arch/riscv64/include/intr.h
+3-63 files

OpenBSD/src ayNjXfysys/arch/m88k/m88k sig_machdep.c

   remove unused struct sigstate; ok miod@
VersionDeltaFile
1.32+1-6sys/arch/m88k/m88k/sig_machdep.c
+1-61 files

OpenBSD/src FsLvSeIbin/mv cp.c

   remove duplicate includes and license; feedback and ok miod@
VersionDeltaFile
1.11+2-49bin/mv/cp.c
+2-491 files

OpenBSD/src G9VhOXCshare/man/man4 ddb.4

   remove notes about unsupported modifiers; from nir lichtman
   confirmed by miod
VersionDeltaFile
1.109+4-15share/man/man4/ddb.4
+4-151 files

OpenBSD/src Iz65LEPregress/usr.bin/ssh test-exec.sh

   regress support for split sshd-auth binary
VersionDeltaFile
1.120+6-1regress/usr.bin/ssh/test-exec.sh
+6-11 files

OpenBSD/src DuQ3r3Ietc rc

   sshd-auth also has a relink kit
VersionDeltaFile
1.577+2-2etc/rc
+2-21 files

OpenBSD/src khhJQWxdistrib/sets/lists/base mi

   sync
VersionDeltaFile
1.1148+3-0distrib/sets/lists/base/mi
+3-01 files