Lines Matching full:path
170 /* If running as root, we don't use the privsep code path */
176 * are mandatory, as they enable us to check path safety
182 "require path cert and path script in the config file\n");
451 * Check script path and name
703 privsep_eay_get_pkcs1privkey(path)
704 char *path;
711 return eay_get_pkcs1privkey(path);
713 len = sizeof(*msg) + strlen(path) + 1;
723 memcpy(msg + 1, path, msg->bufs.buflen[0]);
1100 char *const bad_env[] = { "PATH=", "LD_LIBRARY_PATH=", "IFS=", NULL };
1118 * Check path safety
1125 char *path;
1132 path = lcconf->pathinfo[pathtype];
1134 /* No path was given for scripts: skip the check */
1135 if (path == NULL)
1140 "script path \"%s\" is invalid\n", script);
1144 len = strlen(path);
1145 if (strncmp(path, rpath, len) != 0)