| # | Line 393 | Line 393 | rmx_load(const char *inspec, RMPref rmp) | |
|---|---|---|
| 393 | } /* else open it ourselves */ | |
| 394 | fp = fopen(inspec, "r"); | |
| 395 | } | |
| 396 | < | if (!fp) |
| 396 | > | if (!fp) { |
| 397 | > | fprintf(stderr, "Cannot open for reading: %s\n", inspec); |
| 398 | return(NULL); | |
| 399 | + | } |
| 400 | #ifdef getc_unlocked | |
| 401 | flockfile(fp); | |
| 402 | #endif | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |