]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak add sm_dump comments in debug code
authorKern Sibbald <kern@sibbald.com>
Tue, 20 Jul 2010 17:14:54 +0000 (19:14 +0200)
committerKern Sibbald <kern@sibbald.com>
Thu, 22 Jul 2010 13:45:14 +0000 (15:45 +0200)
bacula/src/lib/alist.c
bacula/src/lib/dlist.c
bacula/src/lib/guid_to_name.c
bacula/src/lib/htable.c
bacula/src/lib/rblist.c

index 7b53dfe8bc0a0c5b206c787ca4f6c2538a2b58c8..26c19051e93dc15642ce712d0cb9ae6adff9f4d8 100644 (file)
@@ -204,7 +204,7 @@ int main()
    delete mlist;
 
 
-   sm_dump(false);
+   sm_dump(false);       /* test program */
 
 }
 #endif
index 3f17a7d853318cb42870ec2f7ebe1516c2bb8d82..d015fb62728af77bd0626292093e691b81721303 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2003-2007 Free Software Foundation Europe e.V.
+   Copyright (C) 2003-2010 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -33,8 +33,6 @@
  *
  *   Kern Sibbald, July MMIII
  *
- *   Version $Id$
- *
  */
 
 #include "bacula.h"
@@ -550,7 +548,7 @@ int main()
    printf("destroy dlistString chain\n");
    chain.destroy();
 
-   sm_dump(false);
+   sm_dump(false);    /* unit test */
 
 }
 #endif
index e407c2247d139b8f38c23d7fddfdb5f79dbd88ca..9ce954a7c0c2b03e7ef0f81fe9e57dd4d10d9542 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2007 Kern Sibbald
+   Copyright (C) 2007-2010 Kern Sibbald
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -31,7 +31,6 @@
  *  Program to convert uid and gid into names, and cache the results
  *   for preformance reasons.
  *
- *  Version $Id$
  */
 
 #include "bacula.h"
@@ -199,7 +198,7 @@ int main()
    }
     
    free_guid_list(list);
-   sm_dump(false);
+   sm_dump(false);     /* unit test */
 
    return 0;
 }
index ee56f875a4bd0d0fa3f668c1acd4ded4ba9e0ad5..850a721060ed523416991a5af9783a74cb65a9ca 100644 (file)
@@ -1,7 +1,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2003-2008 Free Software Foundation Europe e.V.
+   Copyright (C) 2003-2010 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -46,8 +46,6 @@
  *
  *   Kern Sibbald, July MMIII
  *
- *   Version $Id$
- *
  */
 
 #include "bacula.h"
@@ -432,7 +430,7 @@ int main()
    free(jcrtbl);
    printf("Freed jcrtbl\n");
 
-   sm_dump(false);
+   sm_dump(false);   /* unit test */
 
 }
 #endif
index 8cceece0af8b1aebdaa6a01dd43ac31c927395de..5d16a8a83cb3aa2cf9c92f10f2d7b872b2a54045 100644 (file)
@@ -1,20 +1,7 @@
-/*
- *  Bacula red-black binary tree routines.
- *
- *    rblist is a binary tree with the links being in the data item.
- *
- *   Developped in part from ideas obtained from several online University
- *    courses. 
- *
- *   Kern Sibbald, November MMV
- *
- *   Version $Id$
- *
- */
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2005-2007 Free Software Foundation Europe e.V.
+   Copyright (C) 2005-2010 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
    Switzerland, email:ftf@fsfeurope.org.
 */
+/*
+ *  Bacula red-black binary tree routines.
+ *
+ *    rblist is a binary tree with the links being in the data item.
+ *
+ *   Developped in part from ideas obtained from several online University
+ *    courses. 
+ *
+ *   Kern Sibbald, November MMV
+ *
+ */
 
 #include "bacula.h"
 
@@ -490,7 +488,7 @@ int main()
    delete jcr_chain;
 
 
-   sm_dump(true);
+   sm_dump(true);      /* unit test */
 
 }
 #endif