commit 0465ef11f19a12de1c675fbdc59e445c8ea10fb1 from: Stefan Sperling date: Sat Jan 13 11:28:07 2018 UTC unlink tempfiles again, was disabled for testing commit - c54542a0f027a3421f0bc3110b6bbaaa6b53522c commit + 0465ef11f19a12de1c675fbdc59e445c8ea10fb1 blob - 7ec32c1f45c6d2006e0355e0c06d728bfee555ee blob + 4f126aafd7408190132e8707705612f83feb06f6 --- lib/path.c +++ lib/path.c @@ -73,7 +73,7 @@ got_opentemp(void) if (fd < 0) return NULL; - /* unlink(name); */ + unlink(name); f = fdopen(fd, "w+"); if (f == NULL) { close(fd);