a1810f2a01
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/net-snmp#be26e76db31e227dcc75fe872ad69f39629713ad
27 lines
1.2 KiB
Diff
27 lines
1.2 KiB
Diff
diff -urNp a/agent/mibgroup/host/data_access/swinst_rpm.c b/agent/mibgroup/host/data_access/swinst_rpm.c
|
|
--- a/agent/mibgroup/host/data_access/swinst_rpm.c 2020-06-10 14:32:43.330486233 +0200
|
|
+++ b/agent/mibgroup/host/data_access/swinst_rpm.c 2020-06-10 14:35:46.672298741 +0200
|
|
@@ -75,6 +75,9 @@ netsnmp_swinst_arch_init(void)
|
|
snprintf( pkg_directory, SNMP_MAXPATH, "%s/Packages", dbpath );
|
|
SNMP_FREE(rpmdbpath);
|
|
dbpath = NULL;
|
|
+#ifdef HAVE_RPMGETPATH
|
|
+ rpmFreeRpmrc();
|
|
+#endif
|
|
if (-1 == stat( pkg_directory, &stat_buf )) {
|
|
snmp_log(LOG_ERR, "Can't find directory of RPM packages");
|
|
pkg_directory[0] = '\0';
|
|
diff -urNp a/agent/mibgroup/host/hr_swinst.c b/agent/mibgroup/host/hr_swinst.c
|
|
--- a/agent/mibgroup/host/hr_swinst.c 2020-06-10 14:32:43.325486184 +0200
|
|
+++ b/agent/mibgroup/host/hr_swinst.c 2020-06-10 14:36:44.423872418 +0200
|
|
@@ -231,6 +231,9 @@ init_hr_swinst(void)
|
|
snprintf(path, sizeof(path), "%s/packages.rpm", swi->swi_dbpath);
|
|
path[ sizeof(path)-1 ] = 0;
|
|
swi->swi_directory = strdup(path);
|
|
+#ifdef HAVE_RPMGETPATH
|
|
+ rpmFreeRpmrc();
|
|
+#endif
|
|
}
|
|
#else
|
|
# ifdef _PATH_HRSW_directory
|