summaryrefslogtreecommitdiff
path: root/sbin/isakmpd/x509.c
diff options
context:
space:
mode:
authorHakan Olsson <ho@cvs.openbsd.org>2003-11-06 16:12:09 +0000
committerHakan Olsson <ho@cvs.openbsd.org>2003-11-06 16:12:09 +0000
commit794afd1bf2b19666384a8bcd3ee110d63f62f167 (patch)
treea1a498cdc9e2c556b3b5429bfe2bc35fc15dda26 /sbin/isakmpd/x509.c
parent19ab6f203585d2248f3829418d72906d79d633f4 (diff)
Style nits.
Diffstat (limited to 'sbin/isakmpd/x509.c')
-rw-r--r--sbin/isakmpd/x509.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/x509.c b/sbin/isakmpd/x509.c
index dc2a44ddb67..3a6a5888439 100644
--- a/sbin/isakmpd/x509.c
+++ b/sbin/isakmpd/x509.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: x509.c,v 1.82 2003/06/10 16:41:29 deraadt Exp $ */
+/* $OpenBSD: x509.c,v 1.83 2003/11/06 16:12:08 ho Exp $ */
/* $EOM: x509.c,v 1.54 2001/01/16 18:42:16 ho Exp $ */
/*
@@ -697,7 +697,7 @@ x509_read_from_dir (X509_STORE *ctx, char *name, int hash)
{
struct stat sb;
- if (stat(fullname, &sb) == -1 || !(sb.st_mode & S_IFREG))
+ if (stat (fullname, &sb) == -1 || !(sb.st_mode & S_IFREG))
continue;
}
@@ -805,7 +805,7 @@ x509_read_crls_from_dir (X509_STORE *ctx, char *name)
{
struct stat sb;
- if (stat(fullname, &sb) == -1 || !(sb.st_mode & S_IFREG))
+ if (stat (fullname, &sb) == -1 || !(sb.st_mode & S_IFREG))
continue;
}