lkml.org 
[lkml]   [2023]   [Oct]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH] landlock: fix typo in landlock_append_net_rule() stub function
    Date
    From: Arnd Bergmann <arnd@arndb.de>

    There is an extraneous semicolon in the empty stub helper for
    this function tha causes randconfig builds to break:

    In file included from security/landlock/setup.c:17:
    security/landlock/net.h:28:1: error: expected identifier or '(' before '{' token
    security/landlock/net.h:26:1: error: 'landlock_append_net_rule' declared 'static' but never defined [-Werror=unused-function]

    Fixes: 614d46b333ab9 ("landlock: Add network rules and TCP hooks support")
    Signed-off-by: Arnd Bergmann <arnd@arndb.de>
    ---
    security/landlock/net.h | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/security/landlock/net.h b/security/landlock/net.h
    index 588a49fd69076..09960c237a13e 100644
    --- a/security/landlock/net.h
    +++ b/security/landlock/net.h
    @@ -24,7 +24,7 @@ static inline void landlock_add_net_hooks(void)

    static inline int
    landlock_append_net_rule(struct landlock_ruleset *const ruleset, const u16 port,
    - access_mask_t access_rights);
    + access_mask_t access_rights)
    {
    return -EAFNOSUPPORT;
    }
    --
    2.39.2
    \
     
     \ /
      Last update: 2023-10-17 16:34    [W:4.842 / U:0.012 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site