Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 243213
Collapse All | Expand All

(-)src-native-new/src/agentController/AgentController.c (-1 / +1 lines)
Lines 403-409 Link Here
403
			}else{
403
			}else{
404
				iacConfigDirPath = (char*)tptp_malloc(sizeof(char) * 2048);
404
				iacConfigDirPath = (char*)tptp_malloc(sizeof(char) * 2048);
405
				
405
				
406
				sprintf(iacConfigDirPath, "%s", argv[i+1], FILESEP);
406
				sprintf(iacConfigDirPath, "%s", argv[i+1]);
407
				fclose(serviceConfigFile);
407
				fclose(serviceConfigFile);
408
			}
408
			}
409
		}
409
		}
(-)src-native-new/src/shared/tptpConfig/TPTPConfig.cpp (-2 / +2 lines)
Lines 877-883 Link Here
877
		return -1;
877
		return -1;
878
	}
878
	}
879
879
880
	TPTP_LOG_DEBUG_MSG1("Plugin directory is %s.", Plugin_InstallDir);
880
	TPTP_LOG_DEBUG_MSG1("Plugin directory is %s.", acconfig->pluginConfigLocation);
881
	
881
	
882
	loadAvailablePluginsList(acconfig->pluginConfigLocation);
882
	loadAvailablePluginsList(acconfig->pluginConfigLocation);
883
	//setup a dummy application alias.... if a user has not specified one.
883
	//setup a dummy application alias.... if a user has not specified one.
Lines 965-971 Link Here
965
				fclose(fp);
965
				fclose(fp);
966
				TPTP_LOG_DEBUG_MSG1("File exists: %s. Start to parse file.", checkName);
966
				TPTP_LOG_DEBUG_MSG1("File exists: %s. Start to parse file.", checkName);
967
967
968
			  int ret =  parsePluginConfig(acconfig, acconfig->pluginConfigLocation);
968
			  int ret =  parsePluginConfig(acconfig, dirEntry->d_name);
969
			}
969
			}
970
			tptp_free(checkName);
970
			tptp_free(checkName);
971
		} //while DirEntry = readdir
971
		} //while DirEntry = readdir

Return to bug 243213