summaryrefslogtreecommitdiffstats
path: root/source3/include
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2013-07-17 18:04:20 +0200
committerAndreas Schneider <asn@samba.org>2014-02-19 18:22:28 +0100
commit5fbe36cbaf2421327f25576e1b2c76322b765479 (patch)
treef298853f82cdc37a650608ffe374dce3f36d2656 /source3/include
parent9cb90772339c4beb87d85229b4010e7d36d12205 (diff)
downloadsamba-5fbe36cbaf2421327f25576e1b2c76322b765479.tar.gz
samba-5fbe36cbaf2421327f25576e1b2c76322b765479.tar.xz
samba-5fbe36cbaf2421327f25576e1b2c76322b765479.zip
clitar.h: delete file
Signed-off-by: Aurélien Aptel <aurelien.aptel@gmail.com> Reviewed-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/clitar.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/source3/include/clitar.h b/source3/include/clitar.h
deleted file mode 100644
index 69267fbb08a..00000000000
--- a/source3/include/clitar.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Unix SMB/CIFS implementation.
- * clitar file format
- * Copyright (C) Andrew Tridgell 2000
- *
- * 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 3 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, see <http://www.gnu.org/licenses/>.
- */
-
-#ifndef _CLITAR_H
-#define _CLITAR_H
-
-#define TBLOCK 512
-#define NAMSIZ 100
-union hblock {
- char dummy[TBLOCK];
- struct header {
- char name[NAMSIZ];
- char mode[8];
- char uid[8];
- char gid[8];
- char size[12];
- char mtime[12];
- char chksum[8];
- char linkflag;
- char linkname[NAMSIZ];
- } dbuf;
-};
-
-#endif /* _CLITAR_H */