diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-06-20 07:58:58 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-06-20 07:58:58 +0000 |
commit | 776a1f06ae8b7106a529b3cbf5c4b3c5e70dfcb9 (patch) | |
tree | b73ea229545e20b76e0f41e174a053098909a408 /usr.bin/tcfs/tcfs_getstatus.c | |
parent | c3c99f121a3abe960ffe947542b04d7d0f22f28e (diff) |
add openbsd tags. rearrange headers as per style(9) and indent.
replace some strcpy by strlcpy.
Diffstat (limited to 'usr.bin/tcfs/tcfs_getstatus.c')
-rw-r--r-- | usr.bin/tcfs/tcfs_getstatus.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/usr.bin/tcfs/tcfs_getstatus.c b/usr.bin/tcfs/tcfs_getstatus.c index 1475392f190..5c135d9ff0e 100644 --- a/usr.bin/tcfs/tcfs_getstatus.c +++ b/usr.bin/tcfs/tcfs_getstatus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcfs_getstatus.c,v 1.6 2000/06/20 07:09:46 fgsch Exp $ */ +/* $OpenBSD: tcfs_getstatus.c,v 1.7 2000/06/20 07:58:57 fgsch Exp $ */ /* * Transparent Cryptographic File System (TCFS) for NetBSD @@ -12,17 +12,18 @@ * Base utility set v0.1 */ +#include <sys/types.h> +#include <sys/mount.h> +#include <sys/param.h> +#include <sys/ucred.h> #include <ctype.h> #include <pwd.h> #include <unistd.h> -#include <sys/types.h> -#include <sys/param.h> -#include <sys/mount.h> + #include <miscfs/tcfs/tcfs.h> #include <miscfs/tcfs/tcfs_cmd.h> -#include "tcfsdefines.h" -#include <sys/ucred.h> +#include "tcfsdefines.h" #include "tcfslib.h" #include "tcfspwdb.h" |