From: Marko Kreen Date: Thu, 24 Jan 2008 13:04:30 +0000 (+0000) Subject: Mark hash.c as public domain because Jenkins original code is X-Git-Tag: pgbouncer_1_2_rc2~41 X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/queryCache.php?a=commitdiff_plain;h=76137e5f2f4342086af5b63fe1bd14bbe3086678;p=pgbouncer.git Mark hash.c as public domain because Jenkins original code is --- diff --git a/include/hash.h b/include/hash.h index fb2e67f..a676f87 100644 --- a/include/hash.h +++ b/include/hash.h @@ -1,3 +1,4 @@ +/* The contents of this file are public domain. */ uint32_t lookup3_hash(const void *data, size_t len); diff --git a/src/hash.c b/src/hash.c index 5c9a736..bb60cec 100644 --- a/src/hash.c +++ b/src/hash.c @@ -1,19 +1,7 @@ /* - * PgBouncer - Lightweight connection pooler for PostgreSQL. - * - * Copyright (c) 2007 Marko Kreen, Skype Technologies OÜ - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + * The contents of this file are public domain. + * + * Based on: lookup3.c, by Bob Jenkins, May 2006, Public Domain. */ #include "system.h"