| # | Line 293 | Line 293 | int ihost_getconfig(ihost_state_t *ihost_state){ | |
|---|---|---|
| 293 | time_t config_ttl=0; | |
| 294 | ||
| 295 | if((tcp_con=create_tcp_connection(ihost_state->filtermanager_host, ihost_state->filtermanager_port))==NULL){ | |
| 296 | < | goto error; |
| 296 | > | return -1; |
| 297 | } | |
| 298 | ||
| 299 | if(ihost_state->file_list!=NULL || ihost_state->last_modified!=NULL){ | |
| # | Line 578 | Line 578 | int get_system_stats(int seq_no, ihost_state_t *ihost_ | |
| 578 | y=page_stats->pages_pageout; | |
| 579 | } | |
| 580 | snprintf(tmp, size, \ | |
| 581 | < | "<pages><swapins>%lld</swapins><swapouts>%lld</swapouts></pages>", \ |
| 581 | > | "<pages><pageins>%lld</pageins><pageouts>%lld</pageouts></pages>", \ |
| 582 | x, \ | |
| 583 | y); | |
| 584 | ||
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |