From: Ján Tomko Date: Tue, 21 Jun 2016 15:27:27 +0000 (+0200) Subject: Fix comment in virStorageBackendFileSystemRefresh X-Git-Tag: v2.0.0-rc1~72 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=852cd3983041be4f96669bbd59690ffc3d05a658;p=thirdparty%2Flibvirt.git Fix comment in virStorageBackendFileSystemRefresh '.' and '..' are now skipped by virDirRead, there's no need to mention them in the comment. --- 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;