1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2024-12-26 03:21:44 +03:00

virConnect: Update comment for @privateData

This member allows us to store a pointer to some private data.
However, the comment says it's used in both domain driver and
network driver. Well, it is not. It's just one pointer and domain
driver uses it directly. Network driver has a global driver
variable. Update the comment to not confuse others.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Michal Privoznik 2017-07-27 08:43:40 +02:00
parent 215b3ab4ef
commit 8e2a535cf4

View File

@ -472,8 +472,8 @@ struct _virConnect {
virSecretDriverPtr secretDriver;
virNWFilterDriverPtr nwfilterDriver;
/* Private data pointer which can be used by driver and
* network driver as they wish.
/* Private data pointer which can be used by domain driver as
* it pleases.
* NB: 'private' is a reserved word in C++.
*/
void * privateData;