From: Mark Wielaard Date: Wed, 2 Nov 2022 16:54:11 +0000 (+0100) Subject: debuginfod: Mark extract_section function static X-Git-Tag: elfutils-0.189~67 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=58a7aa900bc2d9822b0d0cb596ba95a21ff0fd2d;p=thirdparty%2Felfutils.git debuginfod: Mark extract_section function static The extract_section function in debuginfod-client.c is an internal function and should not be exported. Mark it as static. Signed-off-by: Mark Wielaard --- diff --git a/debuginfod/ChangeLog b/debuginfod/ChangeLog index 50668e611..1efa080fe 100644 --- a/debuginfod/ChangeLog +++ b/debuginfod/ChangeLog @@ -1,3 +1,7 @@ +2022-11-02 Mark Wielaard + + * debuginfod-client.c (extract_section): Mark static. + 2022-11-01 Aaron Merey * debuginfod-client.c (path_escape): Add early return. diff --git a/debuginfod/debuginfod-client.c b/debuginfod/debuginfod-client.c index 0c4a00cf9..f48e32cc8 100644 --- a/debuginfod/debuginfod-client.c +++ b/debuginfod/debuginfod-client.c @@ -621,7 +621,7 @@ path_escape (const char *src, char *dest) section name was not found. -EEXIST indicates that the section was found but had type SHT_NOBITS. */ -int +static int extract_section (int fd, const char *section, char *fd_path, char **usr_path) { elf_version (EV_CURRENT);