]> git.tuebingen.mpg.de Git - dss.git/blobdiff - snap.h
Trivial typo fix.
[dss.git] / snap.h
diff --git a/snap.h b/snap.h
index 90a2e3a827abf6b373410d42d310efa013731fef..afac5e9554ab6eae991e796bbf386bddb82d8540 100644 (file)
--- a/snap.h
+++ b/snap.h
@@ -1,3 +1,8 @@
+/*
+ * Copyright (C) 2008 Andre Noll <maan@systemlinux.org>
+ *
+ * Licensed under the GPL v2. For licencing details see COPYING.
+ */
 
 /** The state of snapshot creation. */
 enum {
@@ -11,6 +16,8 @@ enum {
        SCS_RSYNC_RUNNING,
        /** The rsync process exited successfully. */
        SCS_RSYNC_SUCCESS,
+       /** The rsync process needs to be restarted. */
+       SCS_RSYNC_NEEDS_RESTART,
        /** The post-create hook has been started. */
        SCS_POST_HOOK_RUNNING,
 };
@@ -33,7 +40,7 @@ enum snapshot_status_flags {
        SS_BEING_DELETED = 2,
 };
 
-/** Desribes one snapshot */
+/** Describes one snapshot. */
 struct snapshot {
        /** The name of the directory, relative to the destination dir. */
        char *name;