From 852cd3983041be4f96669bbd59690ffc3d05a658 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Tomko?= Date: Tue, 21 Jun 2016 17:27:27 +0200 Subject: [PATCH] Fix comment in virStorageBackendFileSystemRefresh '.' and '..' are now skipped by virDirRead, there's no need to mention them in the comment. --- src/storage/storage_backend_fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/storage_backend_fs.c b/src/storage/storage_backend_fs.c index 152f9f32ab..33cf90d570 100644 --- a/src/storage/storage_backend_fs.c +++ b/src/storage/storage_backend_fs.c @@ -936,7 +936,7 @@ virStorageBackendFileSystemRefresh(virConnectPtr conn ATTRIBUTE_UNUSED, &vol->target.encryption)) < 0) { if (err == -2) { /* Silently ignore non-regular files, - * eg '.' '..', 'lost+found', dangling symbolic link */ + * eg 'lost+found', dangling symbolic link */ virStorageVolDefFree(vol); vol = NULL; continue;