mirror of
https://git.code.sf.net/p/linux-ima/ima-evm-utils
synced 2025-04-28 22:53:37 +02:00
inline block variable renamed
err shadows function lever err. Renamed it to error. Signed-off-by: Dmitry Kasatkin <dmitry.kasatkin@intel.com>
This commit is contained in:
parent
42e40570e6
commit
9c4d793034
@ -1289,14 +1289,14 @@ int main(int argc, char *argv[])
|
||||
err = call_command(cmds, argv[optind++]);
|
||||
|
||||
if (err) {
|
||||
unsigned long err;
|
||||
unsigned long error;
|
||||
if (errno)
|
||||
log_err("errno: %s (%d)\n", strerror(errno), errno);
|
||||
for (;;) {
|
||||
err = ERR_get_error();
|
||||
if (!err)
|
||||
error = ERR_get_error();
|
||||
if (!error)
|
||||
break;
|
||||
log_err("%s\n", ERR_error_string(err, NULL));
|
||||
log_err("%s\n", ERR_error_string(error, NULL));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user