6bcb0919aa
libpng(3) to be able to use the new libpng, which disabled some deprecated interfaces. Modify file.c to use mkstemp instead of tmpnam. Fix an old bug -- when the new server's configuration is created from scratch, we write a file and then read it -- use O_RDWR instead of O_WRONLY. I could not reproduce Andreas' complaint regarding compface related crashes and plan to re-enable them in the Makefile. Too bad this program is no longer in development :(
11 lines
383 B
C
11 lines
383 B
C
Do not use O_WRONLY, if we plan on reading from this file again!
|
|
|
|
-mi
|
|
|
|
--- src/resource.c Fri Jan 9 12:16:21 1998
|
|
+++ src/resource.c Fri Jul 13 12:21:46 2001
|
|
@@ -556,3 +556,3 @@
|
|
fprintf(stderr, "Knews: creating config file %s\n", path);
|
|
- fd = open_mkdir(path, O_WRONLY|O_TRUNC|O_EXCL|O_CREAT, True);
|
|
+ fd = open_mkdir(path, O_RDWR|O_TRUNC|O_EXCL|O_CREAT, True);
|
|
if (fd < 0) {
|