Fix env var name for CL_AGENT

This got incorrectly renamed to VDI_AGENT
Change-Id: Ifd7f7c89c0a4e4bfc29e0bceae2c22bf6ba01379
This commit is contained in:
Saleel Kudchadker
2020-04-08 11:05:09 -07:00
parent d3d6af6eef
commit b4d852de7f
+1 -1
View File
@@ -179,7 +179,7 @@ bool Agent::init() {
// potentialCapabilities_.canGenerateProgramEvents = 1;
// potentialCapabilities_.canGenerateKernelEvents = 1;
const char* envVar = ::getenv("VDI_AGENT");
const char* envVar = ::getenv("CL_AGENT");
if (envVar == NULL) {
return true;
}