X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Ffsck%2Ffsck.c;h=56cb52dc99ecb585e714d37902d8e75fd7750fbd;hp=594f21e070ee90846984e1b954bc13529e887f1a;hb=8d2a6145334257c8a9ceabc9dd52dff06cca818e;hpb=fdd25311706bd32580ec4d43211cdf4665d2f9de diff --git a/src/fsck/fsck.c b/src/fsck/fsck.c index 594f21e07..56cb52dc9 100644 --- a/src/fsck/fsck.c +++ b/src/fsck/fsck.c @@ -301,10 +301,12 @@ int main(int argc, char *argv[]) { r = fsck_exists(type); if (r < 0) { if (r == -ENOENT) { - log_info("fsck.%s doesn't exist, not checking file system.", type); + log_info("fsck.%s doesn't exist, not checking file system on %s", + type, device); return EXIT_SUCCESS; } else - log_warning("fsck.%s cannot be used: %s", type, strerror(-r)); + log_warning("fsck.%s cannot be used for %s: %s", + type, device, strerror(-r)); } }