summaryrefslogtreecommitdiffstats
path: root/contrib/bsnmp/snmpd
diff options
context:
space:
mode:
authorharti <harti@FreeBSD.org>2006-01-10 11:47:56 +0000
committerharti <harti@FreeBSD.org>2006-01-10 11:47:56 +0000
commit2842bec986d4ffbfd2cceef7e5c7c114416bd148 (patch)
treef64ae349a8f9eb93e713fe699782e6f3d6ed4342 /contrib/bsnmp/snmpd
parentac5d1bb3eaf4c98e3a71e21f0cee4e9e68e0fbbb (diff)
downloadFreeBSD-src-2842bec986d4ffbfd2cceef7e5c7c114416bd148.zip
FreeBSD-src-2842bec986d4ffbfd2cceef7e5c7c114416bd148.tar.gz
Vendor patch: fix a bug when parsing the include path.
Diffstat (limited to 'contrib/bsnmp/snmpd')
-rw-r--r--contrib/bsnmp/snmpd/config.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/bsnmp/snmpd/config.c b/contrib/bsnmp/snmpd/config.c
index ce3a469..0701c41 100644
--- a/contrib/bsnmp/snmpd/config.c
+++ b/contrib/bsnmp/snmpd/config.c
@@ -206,17 +206,18 @@ input_open_file(const char *fname, int sysdir)
struct input *input;
FILE *fp;
char path[PATH_MAX + 1];
- char *col;
+ const char *col;
const char *ptr;
if (sysdir) {
ptr = syspath;
fp = NULL;
while (*ptr != '\0') {
- if ((col = strchr(ptr, ':')) == NULL)
+ if ((col = strchr(ptr, ':')) == NULL) {
snprintf(path, sizeof(path), "%s/%s",
ptr, fname);
- else if (col == ptr)
+ col = ptr + strlen(ptr) - 1;
+ } else if (col == ptr)
snprintf(path, sizeof(path), "./%s", fname);
else
snprintf(path, sizeof(path), "%.*s/%s",
OpenPOWER on IntegriCloud