| # | Line 162 | Line 162 | temp_fd(char *s, size_t len, char *templ) | |
|---|---|---|
| 162 | FILE * | |
| 163 | temp_fp(char *s, size_t len, char *templ) | |
| 164 | { | |
| 165 | < | int fd = temp_file(s, len, templ); |
| 165 | > | int fd = temp_fd(s, len, templ); |
| 166 | if (fd < 0) return NULL; | |
| 167 | return fdopen(fd, "w+"); | |
| 168 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |