summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/tcfs/tcfserrors.c13
-rw-r--r--usr.bin/tcfs/tcfserrors.h12
-rw-r--r--usr.bin/tcfs/tcfslib.h11
-rw-r--r--usr.bin/tcfs/tcfsputkey.c13
-rw-r--r--usr.bin/tcfs/tcfstatold.c59
5 files changed, 0 insertions, 108 deletions
diff --git a/usr.bin/tcfs/tcfserrors.c b/usr.bin/tcfs/tcfserrors.c
index 122128dd6e5..4cc4515c97b 100644
--- a/usr.bin/tcfs/tcfserrors.c
+++ b/usr.bin/tcfs/tcfserrors.c
@@ -8,21 +8,8 @@
/*
* Base utility set v0.1
- *
- * $Source: /cvs/OpenBSD/src/usr.bin/tcfs/Attic/tcfserrors.c,v $
- * $State: Exp $
- * $Revision: 1.1 $
- * $Author: provos $
- * $Date: 2000/06/18 22:07:24 $
- *
*/
-static const char *RCSid="$id: $";
-
-/* RCS_HEADER_ENDS_HERE */
-
-
-
#include <stdio.h>
#include <unistd.h>
#include "tcfserrors.h"
diff --git a/usr.bin/tcfs/tcfserrors.h b/usr.bin/tcfs/tcfserrors.h
index 71118933006..68dbe5021e4 100644
--- a/usr.bin/tcfs/tcfserrors.h
+++ b/usr.bin/tcfs/tcfserrors.h
@@ -8,20 +8,8 @@
/*
* Base utility set v0.1
- *
- * $Source: /cvs/OpenBSD/src/usr.bin/tcfs/Attic/tcfserrors.h,v $
- * $State: Exp $
- * $Revision: 1.1 $
- * $Author: provos $
- * $Date: 2000/06/18 22:07:24 $
- *
*/
-/* RCS_HEADER_ENDS_HERE */
-
-
-
-
#ifndef _ERRORS_H
#define _ERRORS_H
diff --git a/usr.bin/tcfs/tcfslib.h b/usr.bin/tcfs/tcfslib.h
index a94cf5216e0..6f8f52b861e 100644
--- a/usr.bin/tcfs/tcfslib.h
+++ b/usr.bin/tcfs/tcfslib.h
@@ -8,19 +8,8 @@
/*
* Base utility set v0.1
- *
- * $Source: /cvs/OpenBSD/src/usr.bin/tcfs/Attic/tcfslib.h,v $
- * $State: Exp $
- * $Revision: 1.1 $
- * $Author: provos $
- * $Date: 2000/06/18 22:07:24 $
- *
*/
-/* RCS_HEADER_ENDS_HERE */
-
-
-
#include <unistd.h>
#include "tcfsdefines.h"
#include "tcfspwdb.h"
diff --git a/usr.bin/tcfs/tcfsputkey.c b/usr.bin/tcfs/tcfsputkey.c
index 362355ee3d0..930ab9ac395 100644
--- a/usr.bin/tcfs/tcfsputkey.c
+++ b/usr.bin/tcfs/tcfsputkey.c
@@ -8,21 +8,8 @@
/*
* Base utility set v0.1
- *
- * $Source: /cvs/OpenBSD/src/usr.bin/tcfs/Attic/tcfsputkey.c,v $
- * $State: Exp $
- * $Revision: 1.1 $
- * $Author: provos $
- * $Date: 2000/06/18 22:07:24 $
- *
*/
-static const char *RCSid="$id: $";
-
-/* RCS_HEADER_ENDS_HERE */
-
-
-
#include <stdio.h>
#include <sys/types.h>
#include <sys/param.h>
diff --git a/usr.bin/tcfs/tcfstatold.c b/usr.bin/tcfs/tcfstatold.c
deleted file mode 100644
index 38a377cc766..00000000000
--- a/usr.bin/tcfs/tcfstatold.c
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * Transparent Cryptographic File System (TCFS) for NetBSD
- * Author and mantainer: Luigi Catuogno [luicat@tcfs.unisa.it]
- *
- * references: http://tcfs.dia.unisa.it
- * tcfs-bsd@tcfs.unisa.it
- */
-
-/*
- * Base utility set v0.1
- *
- * $Source: /cvs/OpenBSD/src/usr.bin/tcfs/Attic/tcfstatold.c,v $
- * $State: Exp $
- * $Revision: 1.1 $
- * $Author: provos $
- * $Date: 2000/06/18 22:07:24 $
- *
- */
-
-static const char *RCSid="$id: $";
-
-/* RCS_HEADER_ENDS_HERE */
-
-
-
-#include <stdio.h>
-#include <sys/types.h>
-#include <unistd.h>
-#include <sys/param.h>
-#include <sys/mount.h>
-#include <sys/wait.h>
-#include <des.h>
-#include "tcfs.h"
-
-void main(int argc, char *argv[], char *envp[])
-{
- struct tcfs_status st;
- int e;
-
- if(argc <2)
- {
- fprintf(stderr,"usage: tcfstat <filesystem>\n");
- exit(1);
- }
-
- e=tcfs_getstatus(argv[1],&st);
- if(e==-1)
- {
- fprintf(stderr,"filesystem %s not mounted\n",argv[0]);
- exit(1);
- }
-
- printf("Status: %d; user keys: %d, group keys: %d\n",st.status, st.n_ukey, st.n_gkey);
- printf("TCFS version: %d, Cipher: %s, keysize: %d, cipher version: %d\n",st.tcfs_version, st.cipher_desc, st.cipher_keysize, st.cipher_version);
-
-
-}
-
-