CVS update [cvs1-11-x-branch]: /ccvs/src/

[email protected] 17 Mar 2005 15:39:12 -0000
Newsgroups gmane.comp.version-control.cvs.cvs
Message-ID <[email protected]>
Tag: cvs1-11-x-branch
User: dprice  
Date: 05/03/17 07:39:12

Modified:
 /ccvs/src/
  ChangeLog, client.c

Log:
 * client.c (call_in_directory): Put function call after var decls.

File Changes:

Directory: /ccvs/src/
=====================

File [changed]: ChangeLog
Url: https://ccvs.cvshome.org/source/browse/ccvs/src/ChangeLog?r1=1.2336.2.355&r2=1.2336.2.356
Delta lines:  +4 -0
-------------------
--- ChangeLog	16 Mar 2005 22:00:44 -0000	1.2336.2.355
+++ ChangeLog	17 Mar 2005 15:39:09 -0000	1.2336.2.356
@@ -1,3 +1,7 @@
+2005-03-17  Derek Price  <[email protected]>
+
+	* client.c (call_in_directory): Put function call after var decls.
+
 2005-03-16  Derek Price  <[email protected]>
 
 	* client.c (call_in_directory), commit.c (commit_filesdoneproc), log.c

File [changed]: client.c
Url: https://ccvs.cvshome.org/source/browse/ccvs/src/client.c?r1=1.318.4.26&r2=1.318.4.27
Delta lines:  +2 -2
-------------------
--- client.c	16 Mar 2005 22:00:44 -0000	1.318.4.26
+++ client.c	17 Mar 2005 15:39:09 -0000	1.318.4.27
@@ -1100,8 +1100,6 @@
     char *short_pathname;
     char *p;
 
-    assert (pathname);
-
     /*
      * Do the whole descent in parallel for the repositories, so we
      * know what to put in CVS/Repository files.  I'm not sure the
@@ -1122,6 +1120,8 @@
     int reposdirname_absolute;
     int newdir = 0;
 
+    assert (pathname);
+
     reposname = NULL;
     read_line (&reposname);
     assert (reposname != NULL);