summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-08-26style(9) fix. No functional changes.Vitaliy Makkoveev
2024-08-26C-h should not be treated specially and represented internally as \b butNicholas Marriott
as C-h like the other Ctrl keys. Backspace is already handled separately if it VERASE.
2024-08-26Pass the screen_redraw_ctx struct into more functions instead ofNicholas Marriott
individual arguments (for example for the pane status), from Michael Grant.
2024-08-26Client flags was changed to uint64_t a while ago, fix a few cases whereNicholas Marriott
it is still int (do not matter now but will with some new flags). From Michael Grant.
2024-08-26Add window_pane_mode helper function to tell if a pane is in copy mode,Nicholas Marriott
from Michael Grant.
2024-08-26Add copy-mode -d flag to scroll a page down if in copy mode already,Nicholas Marriott
from Michael Grant.
2024-08-26Use i2s instead of hard coding the imsg type. Suggested by tb.Florian Obser
2024-08-26errno is unset, use fatalx(3) instead of fatal(3).Florian Obser
2024-08-26Be stricter in what we accept from the main process.Florian Obser
While here mention function where fatalx(3) occurred like everywhere else. Suggested by & OK tb
2024-08-26annoying whitespace found during an audit processTheo de Raadt
2024-08-26replace multiple '.arch armv8.3-a' with a pauth target attributeJonathan Gray
'no objection' kettenis@
2024-08-25typoMiod Vallat
2024-08-25make activate function confirm to the common idiom; ok miodTheo de Raadt
2024-08-25Do not peek inside of struct imsg.Florian Obser
input & OK tb
2024-08-25Since netstart r1.208 (2020), it no longer applies /etc/mynameTheo Buehler
Change Xr from netstart to rc. From Christian Schulte, ok florian
2024-08-25sin6_to_str and i2s take a single argument.Florian Obser
Pointed out by tb
2024-08-25PASSTHROUGH -> FALLTHROUGHJonathan Gray
ok ratchov@
2024-08-24More precision on what exactly OCSP_id_cmp and OCSP_issuer_id_cmp compare.Theo Buehler
The existing description was lacking and incorrect, respectively.
2024-08-24Simplify engine_showinfo_ctl()Florian Obser
It only handles one imsg type these days, so it doesn't need to peek into struct imsg at all. pointed out by & OK tb
2024-08-24Stop peeking into struct imsg when relaying control messages.Florian Obser
pointed out by & OK tb
2024-08-24conf_def.c: add two trailing commasTheo Buehler
2024-08-24Remove documentation for no longer existing or mostly unused allocators.Martin Pieuchot
ok guenther@
2024-08-24Place uvm_km_zalloc(9) under #ifdef __i386__.Martin Pieuchot
This allocator is only used by a single pmap which will be hopefully converted. Suggested by guenther@
2024-08-24Kill uvm_km_alloc(9) and uvm_km_alloc1(9).Martin Pieuchot
ok guenther@
2024-08-24Do not peek inside of struct imsg.Florian Obser
While here use i2s helper function for error logging. OK tb
2024-08-24Helper function for logging imsg type names.Florian Obser
OK tb as part of a larger diff
2024-08-24X509at_get_attr: zap trailing comma.Theo Buehler
reminded by mandoc -Tlint
2024-08-24syncTheo Buehler
2024-08-24LibreSSL no longer supports adding X.501 attributes to an EVP_PKEYTheo Buehler
Remove the corresponding documentation.
2024-08-24syncTheo Buehler
2024-08-24Change DHCP_SYNC_LEASE messages from log_info to log_debug, they resultStuart Henderson
in quite a lot of noise in a typical dhcpd sync setup. From Michał Markowski, ok florian
2024-08-24Switch UI_UTIL_read_pw* to LCRYPTO_UNUSED()Theo Buehler
ok jsing
2024-08-24Neuter the completely broken UI_UTIL_read_pw* APITheo Buehler
Return 0 on success, return <= 0 on failure. Sigh. In particular, if an allocation failed, the password that no one entered was considered valid. ok jsing
2024-08-24Remove documentation of UI_UTIL_read_pw*Theo Buehler
According to some, a fail-open password verification function is par for the course for libcrypto. Unfortunately, we have been recommending its use over similarly named EVP functions after what amounted to a coin toss a few years back. Luckily enough, no one followed that advice and we can soon remove this API for good.
2024-08-24Make clear it's about *ship* parts when you list the quiz(6) subjects.Marcus Glocker
ok jmc@
2024-08-24spellingJonathan Gray
2024-08-24the index is alphabetically sorted;Jason McIntyre
2024-08-23syncTheo de Raadt
2024-08-23Enable per-cpu page cache; tested on Octeon.Miod Vallat
2024-08-23Switch alpha to MI mplock code.Miod Vallat
2024-08-23The greek quiz is so obscure that it is ridiculous -- noone can playTheo de Raadt
this. Replace it with a new quiz about galley (ship) parts. This commit changes the *LAST UNMODIFIED ORIGINAL FILE* (meaning revision 1.1.1.1) from the original import that created OpenBSD on Oct 18, 1995. With this commit, we have completed an amusing mission of replacing the final parts of the original OpenBSD. We have reached OpenBSD of Theseus. ideas & assistance from mglocker, naval terminology help from jmc
2024-08-23Putting Xs into squares is all the rage with statisticians. We shouldFlorian Obser
test that they can use bitstring macros for that. with & OK deraadt OK bluhm
2024-08-23Speed up script by using awk(1).Marcus Glocker
Discussed with deraadt@
1995-10-18initial import of NetBSD treeTheo de Raadt
2024-08-23Make sure pmap_kernel's mutex field gets correctly initialized rather thanMiod Vallat
bss initialized.
2024-08-23Generate tabset files using a script. ok deraadt millertNicholas Marriott
2024-08-23Fix some program names that were not expanded correctly when ncurses wasNicholas Marriott
updated and were instead replaced by ?. ok millert
2024-08-23slight improvement to index file parsing; ok mlarkinTheo de Raadt
2024-08-23Ignore internal function keys if they have not got an entry in the keyNicholas Marriott
table.
2024-08-23Remove unwanted trailing newlines from err/warn format strings.Anton Lindqvist