summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/crypt/crypt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libc/crypt/crypt.c b/src/lib/libc/crypt/crypt.c
index c61f360a59..76e02c235a 100644
--- a/src/lib/libc/crypt/crypt.c
+++ b/src/lib/libc/crypt/crypt.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: crypt.c,v 1.27 2015/04/06 20:49:41 tedu Exp $ */ 1/* $OpenBSD: crypt.c,v 1.28 2015/05/13 21:01:54 bluhm Exp $ */
2 2
3#include <pwd.h> 3#include <pwd.h>
4 4
@@ -13,4 +13,6 @@ crypt(const char *key, const char *setting)
13 return (NULL); 13 return (NULL);
14 } 14 }
15 } 15 }
16
17 return (NULL);
16} 18}