Caller of exec must report log_error when rstatus is passed.
Version 2.02.89 -
==================================
- Use log_error instead of log_verbose when executed command fails.
Add support for non /dev device paths into fsadm script.
Support different PATH setting for fsadm script testing.
Surround all executed commands with quotes in fsadm script.
if (WEXITSTATUS(status)) {
if (rstatus) {
*rstatus = WEXITSTATUS(status);
- log_error("%s failed: %u", argv[0], *rstatus);
+ log_verbose("%s failed: %u", argv[0], *rstatus);
} else
log_error("%s failed: %u", argv[0], WEXITSTATUS(status));
return 0;