| 1094 | } |
| 1095 | |
| 1096 | staticfn boolean |
| 1097 | cnf_line_GREPPATH(char *bufp) |
| 1098 | { |
| 1099 | #if defined(PANICTRACE) && !defined(VMS) |
| 1100 | if (!file_exists(bufp)) { |
| 1101 | config_error_add("File specified in GREPPATH does not exist"); |
| 1102 | return FALSE; |
| 1103 | } |
| 1104 | #endif |
| 1105 | if (sysopt.greppath) |
| 1106 | free((genericptr_t) sysopt.greppath); |
| 1107 | sysopt.greppath = dupstr(bufp); |
| 1108 | return TRUE; |
| 1109 | } |
| 1110 | |
| 1111 | staticfn boolean |
| 1112 | cnf_line_CRASHREPORTURL(char *bufp) |
nothing calls this directly
no test coverage detected