diff --git a/include/libvirt/virterror.h b/include/libvirt/virterror.h index d2b5f1fd4e..91ba297843 100644 --- a/include/libvirt/virterror.h +++ b/include/libvirt/virterror.h @@ -318,7 +318,7 @@ typedef enum { VIR_ERR_NO_SERVER = 95, /* Server was not found */ VIR_ERR_NO_CLIENT = 96, /* Client was not found */ VIR_ERR_AGENT_UNSYNCED = 97, /* guest agent replies with wrong id - to guest-sync command */ + to guest-sync command (DEPRECATED)*/ VIR_ERR_LIBSSH = 98, /* error in libssh transport driver */ } virErrorNumber; diff --git a/src/util/virerror.c b/src/util/virerror.c index 91022c3b63..562c3bc61d 100644 --- a/src/util/virerror.c +++ b/src/util/virerror.c @@ -1441,7 +1441,7 @@ virErrorMsg(virErrorNumber error, const char *info) else errmsg = _("Client not found: %s"); break; - case VIR_ERR_AGENT_UNSYNCED: + case VIR_ERR_AGENT_UNSYNCED: /* DEPRECATED */ if (info == NULL) errmsg = _("guest agent replied with wrong id to guest-sync command"); else