diff options
Diffstat (limited to 'xlators/features/bit-rot/src/stub/bit-rot-stub.h')
-rw-r--r-- | xlators/features/bit-rot/src/stub/bit-rot-stub.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/features/bit-rot/src/stub/bit-rot-stub.h b/xlators/features/bit-rot/src/stub/bit-rot-stub.h index ae4db0fd4f1..e15f1cecbc0 100644 --- a/xlators/features/bit-rot/src/stub/bit-rot-stub.h +++ b/xlators/features/bit-rot/src/stub/bit-rot-stub.h @@ -355,9 +355,9 @@ br_stub_is_internal_xattr (const char *name) { if (name && ((strncmp (name, BITROT_CURRENT_VERSION_KEY, - strlen (BITROT_CURRENT_VERSION_KEY)) == 0) + SLEN (BITROT_CURRENT_VERSION_KEY)) == 0) || (strncmp (name, BITROT_SIGNING_VERSION_KEY, - strlen (BITROT_SIGNING_VERSION_KEY)) == 0))) + SLEN (BITROT_SIGNING_VERSION_KEY)) == 0))) return 1; return 0; } |