summaryrefslogtreecommitdiff
path: root/tdb/tdbback.h
diff options
context:
space:
mode:
authorgreg@kroah.com <greg@kroah.com>2003-08-05 01:26:59 -0700
committerGreg KH <gregkh@suse.de>2005-04-26 21:01:40 -0700
commit5ac4a56b39fed9d95850161864befe612b1a538e (patch)
treecb9ccdb64bbae97f42c94e5d99734709da77703b /tdb/tdbback.h
parente09292061689b59da68f05eb7a74e353c283078f (diff)
[PATCH] Added tdb code from latest cvs version in the samba tree
Diffstat (limited to 'tdb/tdbback.h')
-rw-r--r--tdb/tdbback.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/tdb/tdbback.h b/tdb/tdbback.h
new file mode 100644
index 0000000000..7ebeaa494d
--- /dev/null
+++ b/tdb/tdbback.h
@@ -0,0 +1,23 @@
+/*
+ Unix SMB/CIFS implementation.
+ low level tdb backup and restore utility
+ Copyright (C) Andrew Tridgell 2002
+
+ 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 Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+char *add_suffix(const char *name, const char *suffix);
+int backup_tdb(const char *old_name, const char *new_name);
+int verify_tdb(const char *fname, const char *bak_name);