Blame SOURCES/kdebase-workspace-4.4.92-xsession_errors_O_APPEND.patch

b5cc75
diff -up kdebase-workspace-4.4.92/kdm/backend/client.c.xsession_errors_O_APPEND kdebase-workspace-4.4.92/kdm/backend/client.c
b5cc75
--- kdebase-workspace-4.4.92/kdm/backend/client.c.xsession_errors_O_APPEND	2010-07-06 01:54:30.000000000 -0500
b5cc75
+++ kdebase-workspace-4.4.92/kdm/backend/client.c	2010-07-07 12:27:24.901922619 -0500
b5cc75
@@ -1223,7 +1223,7 @@ createClientLog(const char *log)
b5cc75
         if (!(lname = expandMacros(log, macros)))
b5cc75
             exit(1);
b5cc75
         unlink(lname);
b5cc75
-        if ((lfd = open(lname, O_WRONLY|O_CREAT|O_EXCL, 0600)) >= 0) {
b5cc75
+        if ((lfd = open(lname, O_WRONLY|O_CREAT|O_EXCL|O_APPEND, 0600)) >= 0) {
b5cc75
             dup2(lfd, 1);
b5cc75
             dup2(lfd, 2);
b5cc75
             close(lfd);