]> git.wh0rd.org Git - nano.git/commitdiff
formatting fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 15 Nov 2005 02:09:03 +0000 (02:09 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 15 Nov 2005 02:09:03 +0000 (02:09 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3174 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/files.c

index 2b4d5f25099ca229fa6848310b1130b809d5e828..46001c892c099e4515b49319af0439b8aa836be5 100644 (file)
@@ -1474,10 +1474,9 @@ int write_file(const char *name, FILE *f_open, bool tmp, append_type
     if (f_open == NULL) {
        /* Now open the file in place.  Use O_EXCL if tmp is TRUE.  This
         * is copied from joe, because wiggy says so *shrug*. */
-       fd = open(realname, O_WRONLY | O_CREAT |
-               ((append == APPEND) ? O_APPEND : (tmp ? O_EXCL :
-               O_TRUNC)), S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP |
-               S_IROTH | S_IWOTH);
+       fd = open(realname, O_WRONLY | O_CREAT | ((append == APPEND) ?
+               O_APPEND : (tmp ? O_EXCL : O_TRUNC)), S_IRUSR |
+               S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
 
        /* Set the umask back to the user's original value. */
        umask(original_umask);