summaryrefslogtreecommitdiff
path: root/sys/miscfs/tcfs/tcfs_cipher_BLOWFISH.c
diff options
context:
space:
mode:
authorNiels Provos <provos@cvs.openbsd.org>2000-06-17 20:25:56 +0000
committerNiels Provos <provos@cvs.openbsd.org>2000-06-17 20:25:56 +0000
commit4101354f3e6be5b49e2d61825c2c7cb7901bec22 (patch)
tree8612e39906950509465ad13ef54daa62b57c09a3 /sys/miscfs/tcfs/tcfs_cipher_BLOWFISH.c
parentb12347c7401e730593586ffb0a6fcae647c52f93 (diff)
some KNF
Diffstat (limited to 'sys/miscfs/tcfs/tcfs_cipher_BLOWFISH.c')
-rw-r--r--sys/miscfs/tcfs/tcfs_cipher_BLOWFISH.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/miscfs/tcfs/tcfs_cipher_BLOWFISH.c b/sys/miscfs/tcfs/tcfs_cipher_BLOWFISH.c
index 719712a6441..5420c7523a2 100644
--- a/sys/miscfs/tcfs/tcfs_cipher_BLOWFISH.c
+++ b/sys/miscfs/tcfs/tcfs_cipher_BLOWFISH.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcfs_cipher_BLOWFISH.c,v 1.2 2000/06/17 17:32:26 provos Exp $ */
+/* $OpenBSD: tcfs_cipher_BLOWFISH.c,v 1.3 2000/06/17 20:25:54 provos Exp $ */
/*
* Copyright 2000 The TCFS Project at http://tcfs.dia.unisa.it/
* All rights reserved.
@@ -28,16 +28,18 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
-#include "tcfs_cipher.h"
-#include "crypto/blf.h"
+
+#include <miscfs/tcfs/tcfs_cipher.h>
+
+#include <crypto/blf.h>
void *
BLOWFISH_init_key (char *key)
{
- blf_ctx *ks=NULL;
+ blf_ctx *ks = NULL;
- ks=(blf_ctx *)malloc (sizeof (blf_ctx), M_FREE, M_NOWAIT);
+ ks = (blf_ctx *)malloc (sizeof (blf_ctx), M_FREE, M_NOWAIT);
if (!ks)
return NULL;