You've identified a typo in the src/libtirpc.map file: Original entry: key_secret_is_set; Corrected entry: key_secretkey_is_set; The typo is that key_secret_is_set should actually be key_secretkey_is_set. Solution Steps Identify the Patch You've provided a patch that shows the necessary change in the src/libtirpc.map file. Let's break down the patch: diff --- a/src/libtirpc.map +++ b/src/libtirpc.map @@ -298,7 +298,7 @@ key_gendes; key_get_conv; key_setsecret; - key_secret_is_set; + key_secretkey_is_set;...
You've identified a typo in the src/libtirpc.map file: Original entry: key_secret_is_set; Corrected entry: key_secretkey_is_set; The typo is that key_secret_is_set should actually be key_secretkey_is_set. Solution Steps Identify the Patch You've provided a patch that shows the necessary change in the src/libtirpc.map file. Let's break down the patch: diff --- a/src/libtirpc.map +++ b/src/libtirpc.map @@ -298,7 +298,7 @@ key_gendes; key_get_conv; key_setsecret; - key_secret_is_set; + key_secretkey_is_set;...