cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] ccvs/src ChangeLog filesubr.c


From: Mark D. Baushke
Subject: [Cvs-cvs] ccvs/src ChangeLog filesubr.c
Date: Tue, 23 May 2006 17:47:39 +0000

CVSROOT:        /cvsroot/cvs
Module name:    ccvs
Branch:         
Changes by:     Mark D. Baushke <address@hidden>        06/05/23 17:47:39

Modified files:
        src            : ChangeLog filesubr.c 

Log message:
        * filesubr.c: Reformat according to HACKING standards.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/cvs/ccvs/src/ChangeLog.diff?tr1=1.3425&tr2=1.3426&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/cvs/ccvs/src/filesubr.c.diff?tr1=1.108&tr2=1.109&r1=text&r2=text

Patches:
Index: ccvs/src/ChangeLog
diff -u ccvs/src/ChangeLog:1.3425 ccvs/src/ChangeLog:1.3426
--- ccvs/src/ChangeLog:1.3425   Tue May 23 02:08:18 2006
+++ ccvs/src/ChangeLog  Tue May 23 17:47:39 2006
@@ -1,3 +1,7 @@
+2006-05-23  Mark D. Baushke  <address@hidden>
+
+       * filesubr.c: Reformat according to HACKING standards.
+
 2006-05-22  Derek Price  <address@hidden>
 
        * rcs.c (RCS_reparsercsfile, RCS_fully_parse, RCS_checkout, RCS_deltas,
Index: ccvs/src/filesubr.c
diff -u ccvs/src/filesubr.c:1.108 ccvs/src/filesubr.c:1.109
--- ccvs/src/filesubr.c:1.108   Thu May  4 14:55:32 2006
+++ ccvs/src/filesubr.c Tue May 23 17:47:39 2006
@@ -80,10 +80,10 @@
        {
            char buf[BUFSIZ];
            int n;
-           
-           for (;;) 
+
+           for (;;)
            {
-               n = read (fdin, buf, sizeof(buf));
+               n = read (fdin, buf, sizeof (buf));
                if (n == -1)
                {
 #ifdef EINTR
@@ -92,16 +92,15 @@
 #endif
                    error (1, errno, "cannot read file %s for copying", from);
                }
-               else if (n == 0) 
+               else if (n == 0)
                    break;
-               
-               if (write(fdout, buf, n) != n) {
+
+               if (write (fdout, buf, n) != n)
                    error (1, errno, "cannot write file %s for copying", to);
-               }
            }
        }
 
-       if (close (fdin) < 0) 
+       if (close (fdin) < 0)
            error (0, errno, "cannot close %s", from);
        if (close (fdout) < 0)
            error (1, errno, "cannot close %s", to);
@@ -123,7 +122,10 @@
 copy_file (const char *from, const char *to)
 {
     TRACE (TRACE_FUNCTION, "copy (%s, %s)", from, to);
-    if (noexec) return;
+
+    if (noexec)
+       return;
+
     force_copy_file (from, to);
 }
 
@@ -243,13 +245,13 @@
     int gmask = 0;
     int omask = 0;
     int uid, mask;
-    
-    if (stat (file, &sb)== -1)
+
+    if (stat (file, &sb) == -1)
        return false;
     if (mode == F_OK)
        return true;
 
-    uid = geteuid();
+    uid = geteuid ();
     if (uid == 0)              /* superuser */
     {
        if (!(mode & X_OK) || (sb.st_mode & (S_IXUSR|S_IXGRP|S_IXOTH)))
@@ -258,7 +260,7 @@
        errno = EACCES;
        return false;
     }
-       
+
     if (mode & R_OK)
     {
        umask |= S_IRUSR;
@@ -278,7 +280,7 @@
        omask |= S_IXOTH;
     }
 
-    mask = sb.st_uid == uid ? umask : sb.st_gid == getegid() ? gmask : omask;
+    mask = sb.st_uid == uid ? umask : sb.st_gid == getegid () ? gmask : omask;
     if ((sb.st_mode & mask) == mask)
        return true;
     errno = EACCES;
@@ -439,9 +441,9 @@
     TRACE (TRACE_FUNCTION, "unlink_file(%s)", f);
 
     if (noexec)
-       return (0);
+       return 0;
 
-    return (CVS_UNLINK (f));
+    return CVS_UNLINK (f);
 }
 
 
@@ -528,7 +530,7 @@
                /* See comment in unlink_file_dir explanation of why we use
                   isdir instead of just calling unlink and checking the
                   status.  */
-               if (isdir (buf)) 
+               if (isdir (buf))
                {
                    if (deep_remove_dir (buf))
                    {
@@ -579,7 +581,7 @@
     char *bp = buf;
     size_t nread;
 
-    do 
+    do
     {
        nread = read (fd, bp, nchars);
        if (nread == (size_t)-1)
@@ -592,7 +594,7 @@
        }
 
        if (nread == 0)
-           break; 
+           break;
 
        bp += nread;
        nchars -= nread;
@@ -601,7 +603,7 @@
     return bp - buf;
 } 
 
-    
+
 /*
  * Compare "file1" to "file2". Return non-zero if they don't compare exactly.
  * If FILE1 and FILE2 are special files, compare their salient characteristics
@@ -659,7 +661,7 @@
     if ((fd2 = open (file2, O_RDONLY)) < 0)
        error (1, errno, "cannot open file %s for comparing", file2);
 
-    /* A generic file compare routine might compare st_dev & st_ino here 
+    /* A generic file compare routine might compare st_dev & st_ino here
        to see if the two files being compared are actually the same file.
        But that won't happen in CVS, so we won't bother. */
 
@@ -678,7 +680,7 @@
        buf1 = xmalloc (buf_size);
        buf2 = xmalloc (buf_size);
 
-       do 
+       do
        {
            read1 = block_read (fd1, buf1, buf_size);
            if (read1 == (size_t)-1)
@@ -690,16 +692,16 @@
 
            /* assert (read1 == read2); */
 
-           ret = memcmp(buf1, buf2, read1);
+           ret = memcmp (buf1, buf2, read1);
        } while (ret == 0 && read1 == buf_size);
 
        free (buf1);
        free (buf2);
     }
-       
+
     (void) close (fd1);
     (void) close (fd2);
-    return (ret);
+    return ret;
 }
 
 /* Generate a unique temporary filename.  Returns a pointer to a newly
@@ -896,7 +898,8 @@
 {
     int i;
     assert (argv || !argc);
-    if (size_overflow_p (xtimes (argc, sizeof (char *)))) {
+    if (size_overflow_p (xtimes (argc, sizeof (char *))))
+    {
        *pargc = 0;
        *pargv = NULL;
        error (0, 0, "expand_wild: too many arguments");




reply via email to

[Prev in Thread] Current Thread [Next in Thread]