Modified: subversion/branches/performance/tools/diff/diff3.c
URL: 
http://svn.apache.org/viewvc/subversion/branches/performance/tools/diff/diff3.c?rev=1027203&r1=1027202&r2=1027203&view=diff
==============================================================================
--- subversion/branches/performance/tools/diff/diff3.c (original)
+++ subversion/branches/performance/tools/diff/diff3.c Mon Oct 25 17:50:25 2010
@@ -1,4 +1,4 @@
-/* diff3-test.c -- test driver for 3-way text merges
+/* diff3.c -- test driver for 3-way text merges
  *
  * ====================================================================
  *    Licensed to the Apache Software Foundation (ASF) under one
@@ -66,7 +66,7 @@ int main(int argc, char *argv[])
   svn_err = svn_stream_for_stdout(&ostream, pool);
   if (svn_err)
     {
-      svn_handle_error2(svn_err, stdout, FALSE, "diff3-test: ");
+      svn_handle_error2(svn_err, stdout, FALSE, "diff3: ");
       rc = 2;
     }
   else if (argc == 4)
@@ -81,7 +81,7 @@ int main(int argc, char *argv[])
         }
       else
         {
-          svn_handle_error2(svn_err, stdout, FALSE, "diff3-test: ");
+          svn_handle_error2(svn_err, stdout, FALSE, "diff3: ");
           rc = 2;
         }
     }

Modified: subversion/branches/performance/tools/diff/diff4.c
URL: 
http://svn.apache.org/viewvc/subversion/branches/performance/tools/diff/diff4.c?rev=1027203&r1=1027202&r2=1027203&view=diff
==============================================================================
--- subversion/branches/performance/tools/diff/diff4.c (original)
+++ subversion/branches/performance/tools/diff/diff4.c Mon Oct 25 17:50:25 2010
@@ -1,4 +1,4 @@
-/* diff4-test.c -- test driver for 3-way text merges
+/* diff4.c -- test driver for 4-way text merges
  *
  * ====================================================================
  *    Licensed to the Apache Software Foundation (ASF) under one
@@ -67,7 +67,7 @@ int main(int argc, char *argv[])
   svn_err = svn_stream_for_stdout(&ostream, pool);
   if (svn_err)
     {
-      svn_handle_error2(svn_err, stdout, FALSE, "diff4-test: ");
+      svn_handle_error2(svn_err, stdout, FALSE, "diff4: ");
       rc = 2;
     }
   else if (argc == 5)
@@ -77,7 +77,7 @@ int main(int argc, char *argv[])
                          pool);
       if (svn_err != NULL)
         {
-          svn_handle_error2(svn_err, stdout, FALSE, "diff4-test: ");
+          svn_handle_error2(svn_err, stdout, FALSE, "diff4: ");
           rc = 2;
         }
     }


Reply via email to