Add newline to two zpool messages

Signed-off-by: Seth Troisi <sethtroisi@google.com>
This commit is contained in:
Seth Troisi 2024-04-10 17:48:08 -07:00
parent 454c0b0e46
commit 02b19419db
1 changed files with 2 additions and 2 deletions

View File

@ -3444,10 +3444,10 @@ do_import(nvlist_t *config, const char *newname, const char *mntopts,
ms_status = zpool_enable_datasets(zhp, mntopts, 0);
if (ms_status == EZFS_SHAREFAILED) {
(void) fprintf(stderr, gettext("Import was "
"successful, but unable to share some datasets"));
"successful, but unable to share some datasets\n"));
} else if (ms_status == EZFS_MOUNTFAILED) {
(void) fprintf(stderr, gettext("Import was "
"successful, but unable to mount some datasets"));
"successful, but unable to mount some datasets\n"));
}
}