Update copyright dates in source files.
authorMichael Vrable <mvrable@cs.ucsd.edu>
Fri, 11 Apr 2008 01:17:48 +0000 (18:17 -0700)
committerMichael Vrable <mvrable@turin.ucsd.edu>
Fri, 11 Apr 2008 01:17:48 +0000 (18:17 -0700)
12 files changed:
localdb.cc
localdb.h
metadata.cc
metadata.h
remote.cc
remote.h
scandir.cc
sha1.cc
sha1.h
store.cc
store.h
util.h

index 077c927..3cd7111 100644 (file)
@@ -1,5 +1,5 @@
 /* LBS: An LFS-inspired filesystem backup system
- * Copyright (C) 2007  Michael Vrable
+ * Copyright (C) 2007-2008  Michael Vrable
  *
  * When creating backup snapshots, maintain a local database of data blocks and
  * checksums, in addition to the data contents (which may be stored remotely).
index 1bfaf3b..6b1f338 100644 (file)
--- a/localdb.h
+++ b/localdb.h
@@ -1,5 +1,5 @@
 /* LBS: An LFS-inspired filesystem backup system
- * Copyright (C) 2007  Michael Vrable
+ * Copyright (C) 2007-2008  Michael Vrable
  *
  * When creating backup snapshots, maintain a local database of data blocks and
  * checksums, in addition to the data contents (which may be stored remotely).
index 2b5f12a..71d7b72 100644 (file)
@@ -1,5 +1,5 @@
 /* LBS: An LFS-inspired filesystem backup system
- * Copyright (C) 2007  Michael Vrable
+ * Copyright (C) 2007-2008  Michael Vrable
  *
  * Handling of metadata written to backup snapshots.  This manages the writing
  * of file metadata into new backup snapshots, including breaking the metadata
index 858a94d..b0bffb3 100644 (file)
@@ -1,5 +1,5 @@
 /* LBS: An LFS-inspired filesystem backup system
- * Copyright (C) 2007  Michael Vrable
+ * Copyright (C) 2007-2008  Michael Vrable
  *
  * Handling of metadata written to backup snapshots.  This manages the writing
  * of file metadata into new backup snapshots, including breaking the metadata
index 6d80b02..92b1f89 100644 (file)
--- a/remote.cc
+++ b/remote.cc
@@ -1,5 +1,5 @@
 /* LBS: An LFS-inspired filesystem backup system
- * Copyright (C) 2006  Michael Vrable
+ * Copyright (C) 2008  Michael Vrable
  *
  * Backup data (segments and backup descriptors) may be stored on a remote
  * fileserver instead of locally.  The only local storage needed is for the
index 7c084c7..1bf2c36 100644 (file)
--- a/remote.h
+++ b/remote.h
@@ -1,5 +1,5 @@
 /* LBS: An LFS-inspired filesystem backup system
- * Copyright (C) 2006  Michael Vrable
+ * Copyright (C) 2008  Michael Vrable
  *
  * Backup data (segments and backup descriptors) may be stored on a remote
  * fileserver instead of locally.  The only local storage needed is for the
index eb05243..357ae63 100644 (file)
@@ -1,4 +1,9 @@
-/* Recursively descend the filesystem and visit each file. */
+/* LBS: An LFS-inspired filesystem backup system
+ * Copyright (C) 2006-2008  Michael Vrable
+ *
+ * Main entry point for LBS.  Contains logic for traversing the filesystem and
+ * constructing a backup.
+ */
 
 #include <dirent.h>
 #include <errno.h>
diff --git a/sha1.cc b/sha1.cc
index 3218075..8554aa7 100644 (file)
--- a/sha1.cc
+++ b/sha1.cc
@@ -2,7 +2,7 @@
    according to the NIST specification FIPS-180-1.
 
    Copyright (C) 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
-   Copyright (C) 2006 Michael Vrable
+   Copyright (C) 2006-2007 Michael Vrable
 
    This program is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by the
diff --git a/sha1.h b/sha1.h
index 2d7e161..890cf22 100644 (file)
--- a/sha1.h
+++ b/sha1.h
@@ -1,7 +1,7 @@
 /* Declarations of functions and data types used for SHA1 sum
    library functions.
    Copyright (C) 2000, 2001, 2003, 2005 Free Software Foundation, Inc.
-   Copyright (C) 2006 Michael Vrable
+   Copyright (C) 2006-2007 Michael Vrable
 
    This program is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by the
index f4f1dbb..e6e5641 100644 (file)
--- a/store.cc
+++ b/store.cc
@@ -1,5 +1,5 @@
 /* LBS: An LFS-inspired filesystem backup system
- * Copyright (C) 2007  Michael Vrable
+ * Copyright (C) 2008  Michael Vrable
  *
  * Backup data is stored in a collection of objects, which are grouped together
  * into segments for storage purposes.  This implementation of the object store
diff --git a/store.h b/store.h
index 580881c..c358770 100644 (file)
--- a/store.h
+++ b/store.h
@@ -1,5 +1,5 @@
 /* LBS: An LFS-inspired filesystem backup system
- * Copyright (C) 2006  Michael Vrable
+ * Copyright (C) 2006-2008  Michael Vrable
  *
  * Backup data is stored in a collection of objects, which are grouped together
  * into segments for storage purposes.  This implementation of the object store
diff --git a/util.h b/util.h
index 735ea60..0fd4983 100644 (file)
--- a/util.h
+++ b/util.h
@@ -1,5 +1,5 @@
 /* LBS: An LFS-inspired filesystem backup system
- * Copyright (C) 2006  Michael Vrable
+ * Copyright (C) 2007  Michael Vrable
  *
  * Utility functions for converting various datatypes to text format (and
  * later, for parsing them back, perhaps).