Commit 5b59829015 for asterisk.org

commit 5b5982901594d5b414960198c8beb2515e3b0fe0
Author: Naveen Albert <asterisk@phreaknet.org>
Date:   Mon Aug 3 10:32:25 2026 -0400

    backtrace.c: Avoid removed bfd_boolean type.

    bfd_boolean has been deprecated for some time and has now been
    removed in gdb, so use bool directly instead.

    See: https://github.com/gnutools/binutils-gdb/commit/1d95b744c06974f0a00c143c6e0fc979af930908

    Resolves: #2054

diff --git a/main/backtrace.c b/main/backtrace.c
index 0d722f0280..c76f660202 100644
--- a/main/backtrace.c
+++ b/main/backtrace.c
@@ -127,7 +127,7 @@ static void process_section(bfd *bfdobj, asection *section, void *obj)
 	bfd_vma offset;
 	bfd_vma vma;
 	bfd_size_type size;
-	bfd_boolean line_found = 0;
+	bool line_found = 0;
 	const char *fn;
 	int inlined = 0;