summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ripd/auth.c
diff options
context:
space:
mode:
authormichele <michele@openbsd.org>2009-09-26 11:12:50 +0000
committermichele <michele@openbsd.org>2009-09-26 11:12:50 +0000
commit0bf71e19b81d83b48b9deac9f51e52875820633c (patch)
tree5b65bc7df710f96635986763c352ec80d6c332d4 /usr.sbin/ripd/auth.c
parentFix artefacts in compression mode especially seen when running X. (diff)
downloadwireguard-openbsd-0bf71e19b81d83b48b9deac9f51e52875820633c.tar.xz
wireguard-openbsd-0bf71e19b81d83b48b9deac9f51e52875820633c.zip
Whitespace cleanup.
Diffstat (limited to 'usr.sbin/ripd/auth.c')
-rw-r--r--usr.sbin/ripd/auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ripd/auth.c b/usr.sbin/ripd/auth.c
index b8c739b0d80..78f41169ca5 100644
--- a/usr.sbin/ripd/auth.c
+++ b/usr.sbin/ripd/auth.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth.c,v 1.9 2007/10/24 20:52:50 claudio Exp $ */
+/* $OpenBSD: auth.c,v 1.10 2009/09/26 11:12:50 michele Exp $ */
/*
* Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it>
@@ -45,7 +45,7 @@ auth_calc_modulator(struct auth_md *md)
MD5Update(&md5ctx, (void *)&md->keyid, sizeof(md->keyid));
MD5Update(&md5ctx, (void *)&md->key, MD5_DIGEST_LENGTH);
MD5Final(digest, &md5ctx);
-
+
bcopy(&digest, &r, sizeof(r));
return ((r >> 1) - time(NULL));