summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbeck <>2014-04-03 15:55:29 +0000
committerbeck <>2014-04-03 15:55:29 +0000
commit3654acb70eb66d8d2d7f0d986c858f8f99ee8218 (patch)
tree18c7cd1507ecd42af106468668c8c5686a6ecd63
parentc737a61b58b0f7c7b6c3929eba21abd896ed1137 (diff)
downloadopenbsd-3654acb70eb66d8d2d7f0d986c858f8f99ee8218.tar.gz
openbsd-3654acb70eb66d8d2d7f0d986c858f8f99ee8218.tar.bz2
openbsd-3654acb70eb66d8d2d7f0d986c858f8f99ee8218.zip
I have discussed these licenses with Poul-Henning Kamp and he has agreed to
this license change. We will remember that we all still like beer.
-rw-r--r--src/lib/libc/crypt/md5crypt.c25
1 files changed, 17 insertions, 8 deletions
diff --git a/src/lib/libc/crypt/md5crypt.c b/src/lib/libc/crypt/md5crypt.c
index 3b7884d5c9..a855835bcc 100644
--- a/src/lib/libc/crypt/md5crypt.c
+++ b/src/lib/libc/crypt/md5crypt.c
@@ -1,15 +1,24 @@
1/* $OpenBSD: md5crypt.c,v 1.16 2013/04/21 18:31:56 tedu Exp $ */ 1/* $OpenBSD: md5crypt.c,v 1.17 2014/04/03 15:55:29 beck Exp $ */
2 2
3/* 3/*
4 * ---------------------------------------------------------------------------- 4 * Copyright (c) 2000 Poul-Henning Kamp <phk@FreeBSD.org>
5 * "THE BEER-WARE LICENSE" (Revision 42):
6 * <phk@login.dknet.dk> wrote this file. As long as you retain this notice you
7 * can do whatever you want with this stuff. If we meet some day, and you think
8 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
9 * ----------------------------------------------------------------------------
10 * 5 *
11 * $FreeBSD: crypt.c,v 1.5 1996/10/14 08:34:02 phk Exp $ 6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
12 * 9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19/*
20 * If we meet some day, and you think this stuff is worth it, you
21 * can buy me a beer in return. Poul-Henning Kamp
13 */ 22 */
14 23
15#include <unistd.h> 24#include <unistd.h>