daemon/xfs.c: Fix error message.

Fixes: commit 87206e4e9e
This commit is contained in:
Richard W.M. Jones
2021-03-30 12:56:06 +01:00
parent 0b7207b8c3
commit 49b8b69cb8

View File

@@ -62,7 +62,7 @@ parse_uint32 (uint32_t *ret, const char *str)
uint32_t r;
if (sscanf (str, "%" SCNu32, &r) != 1) {
reply_with_error ("cannot parse numeric field from isoinfo: %s", str);
reply_with_error ("cannot parse numeric field from xfs_info: %s", str);
return -1;
}
@@ -76,7 +76,7 @@ parse_uint64 (uint64_t *ret, const char *str)
uint64_t r;
if (sscanf (str, "%" SCNu64, &r) != 1) {
reply_with_error ("cannot parse numeric field from isoinfo: %s", str);
reply_with_error ("cannot parse numeric field from xfs_info: %s", str);
return -1;
}