diff mbox series

[BlueZ,v1] mesh: Fix not setting rpl_dir as static

Message ID 20240513203732.435344-1-luiz.dentz@gmail.com
State New
Headers show
Series [BlueZ,v1] mesh: Fix not setting rpl_dir as static | expand

Commit Message

Luiz Augusto von Dentz May 13, 2024, 8:37 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

rpl_dir shall be made static to be properly scoped.
---
 mesh/rpl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

bluez.test.bot@gmail.com May 13, 2024, 10:40 p.m. UTC | #1
This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=852915

---Test result---

Test Summary:
CheckPatch                    PASS      0.46 seconds
GitLint                       PASS      0.33 seconds
BuildEll                      PASS      24.69 seconds
BluezMake                     PASS      1678.68 seconds
MakeCheck                     PASS      13.11 seconds
MakeDistcheck                 PASS      176.37 seconds
CheckValgrind                 PASS      246.07 seconds
CheckSmatch                   PASS      352.98 seconds
bluezmakeextell               PASS      119.79 seconds
IncrementalBuild              PASS      1521.01 seconds
ScanBuild                     PASS      994.87 seconds



---
Regards,
Linux Bluetooth
patchwork-bot+bluetooth@kernel.org May 14, 2024, 2:40 a.m. UTC | #2
Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Mon, 13 May 2024 16:37:32 -0400 you wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> 
> rpl_dir shall be made static to be properly scoped.
> ---
>  mesh/rpl.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [BlueZ,v1] mesh: Fix not setting rpl_dir as static
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=c7445d973694

You are awesome, thank you!
diff mbox series

Patch

diff --git a/mesh/rpl.c b/mesh/rpl.c
index 1213ee66e745..fb225dddd62b 100644
--- a/mesh/rpl.c
+++ b/mesh/rpl.c
@@ -31,7 +31,7 @@ 
 #include "mesh/util.h"
 #include "mesh/rpl.h"
 
-const char *rpl_dir = "/rpl";
+static const char *rpl_dir = "/rpl";
 
 bool rpl_put_entry(struct mesh_node *node, uint16_t src, uint32_t iv_index,
 								uint32_t seq)