git: 633094c27f0a - main - libprocstat: use elf_getphdrnum rather than deprecated elf_getphnum
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 22 Sep 2023 01:47:58 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=633094c27f0ac1b1001d5bd24a883240b4bce1dc
commit 633094c27f0ac1b1001d5bd24a883240b4bce1dc
Author: John Hein <jcfyecrayz@liamekaens.com>
AuthorDate: 2023-09-21 23:43:05 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2023-09-22 01:47:26 +0000
libprocstat: use elf_getphdrnum rather than deprecated elf_getphnum
PR: 273966
Reviewed by: emaste
---
lib/libprocstat/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/libprocstat/core.c b/lib/libprocstat/core.c
index dea078c848eb..cf3435a10c79 100644
--- a/lib/libprocstat/core.c
+++ b/lib/libprocstat/core.c
@@ -119,7 +119,7 @@ procstat_core_open(const char *filename)
warnx("%s is not a CORE file", filename);
goto fail;
}
- if (elf_getphnum(e, &nph) == 0) {
+ if (elf_getphdrnum(e, &nph) == -1) {
warnx("program headers not found");
goto fail;
}