From c8f7464b9759478715f8350abb91769d5bf2b374 Mon Sep 17 00:00:00 2001 From: Alastair Poole Date: Thu, 11 Feb 2021 09:19:18 +0000 Subject: [PATCH] process: OpenBSD onproc becomes run. Avoid the ifdef in the UI code. --- src/bin/system/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/system/process.c b/src/bin/system/process.c index 2aa56a8..8151184 100644 --- a/src/bin/system/process.c +++ b/src/bin/system/process.c @@ -84,7 +84,7 @@ _states_init(void) #endif #if defined(__OpenBSD__) _states[SDEAD] = "dead"; - _states[SONPROC] = "onproc"; + _states[SONPROC] = "run"; #endif #endif #endif