Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/stored/stored_conf.cc')
-rw-r--r--core/src/stored/stored_conf.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/stored/stored_conf.cc b/core/src/stored/stored_conf.cc
index ed9bc7ce5..6ef9e1d40 100644
--- a/core/src/stored/stored_conf.cc
+++ b/core/src/stored/stored_conf.cc
@@ -536,8 +536,8 @@ static void GuessMissingDeviceTypes(ConfigurationParser& my_config)
d->device_type = DeviceType::B_FIFO_DEV;
} else if (!BitIsSet(CAP_REQMOUNT, d->cap_bits)) {
Jmsg2(nullptr, M_ERROR_TERM, 0,
- _("%s is an unknown device type. Must be tape or directory, "
- "st_mode=%04o\n"),
+ "cannot deduce Device Type from '%s'. Must be tape or directory, "
+ "st_mode=%04o\n",
d->archive_device_string, (statp.st_mode & ~S_IFMT));
return;
}