| 312 | } |
| 313 | |
| 314 | int yesnotoi(char *s) { |
| 315 | if (!strcasecmp(s,"yes")) return 1; |
| 316 | else if (!strcasecmp(s,"no")) return 0; |
| 317 | else return truefalsetoi(s); |
| 318 | } |
| 319 | |
| 320 | |
| 321 | void appendServerSaveParams(time_t seconds, int changes) { |
no test coverage detected