From nobody@FreeBSD.org  Wed Aug  7 00:38:30 2002
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 6606E37B400
	for <freebsd-gnats-submit@FreeBSD.org>; Wed,  7 Aug 2002 00:38:30 -0700 (PDT)
Received: from www.freebsd.org (www.FreeBSD.org [216.136.204.117])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 166DC43E70
	for <freebsd-gnats-submit@FreeBSD.org>; Wed,  7 Aug 2002 00:38:30 -0700 (PDT)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.12.4/8.12.4) with ESMTP id g777cTOT023039
	for <freebsd-gnats-submit@FreeBSD.org>; Wed, 7 Aug 2002 00:38:29 -0700 (PDT)
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.12.4/8.12.4/Submit) id g777cTtS023038;
	Wed, 7 Aug 2002 00:38:29 -0700 (PDT)
Message-Id: <200208070738.g777cTtS023038@www.freebsd.org>
Date: Wed, 7 Aug 2002 00:38:29 -0700 (PDT)
From: Kyle Martin <mkm@ieee.org>
To: freebsd-gnats-submit@FreeBSD.org
Subject: no copyright or license on lib/libc/gen/semctl.c
X-Send-Pr-Version: www-1.0

>Number:         41397
>Category:       misc
>Synopsis:       no copyright or license on lib/libc/gen/semctl.c
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    dfr
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Aug 07 00:40:01 PDT 2002
>Closed-Date:    Sun Jul 13 03:20:38 PDT 2003
>Last-Modified:  Sun Jul 13 03:20:38 PDT 2003
>Originator:     Kyle Martin
>Release:        -CURRENT
>Organization:
purple people eaters
>Environment:
n/a
>Description:
there is no copyright or license in the source file mentioned above.
>How-To-Repeat:
mix one part vodka with 2 parts orange juice
>Fix:
id assume just add the BSDL...
>Release-Note:
>Audit-Trail:

From: David Malone <dwmalone@maths.tcd.ie>
To: Kyle Martin <mkm@ieee.org>
Cc: freebsd-gnats-submit@FreeBSD.org, dfr@FreeBSD.org, dd@FreeBSD.org
Subject: Re: misc/41397: no copyright or license on lib/libc/gen/semctl.c
Date: Fri, 9 Aug 2002 14:20:07 +0100

 On Wed, Aug 07, 2002 at 12:38:29AM -0700, Kyle Martin wrote:
 > >Description:
 > there is no copyright or license in the source file mentioned above.
 
 There are a few files in libc/gen without copyrights:
 
 getprogname.c   dd
 msgctl.c        dfr
 msgget.c        dfr
 msgrcv.c        dfr
 msgsnd.c        dfr
 semconfig.c     dfr
 semctl.c        dfr
 semget.c        dfr     
 semop.c         dfr
 setprogname.c   dd
 shmat.c         dfr
 shmctl.c        dfr
 shmdt.c         dfr
 shmget.c        dfr
 
 Maybe Doug and Dima could say what copyright should go on them?
 
 	David.

From: Doug Rabson <dfr@nlsystems.com>
To: David Malone <dwmalone@maths.tcd.ie>, Kyle Martin <mkm@ieee.org>
Cc: freebsd-gnats-submit@FreeBSD.org, dfr@FreeBSD.org, dd@FreeBSD.org
Subject: Re: misc/41397: no copyright or license on lib/libc/gen/semctl.c
Date: Sat, 10 Aug 2002 08:44:28 +0100

 On Friday 09 August 2002 2:20 pm, David Malone wrote:
 > On Wed, Aug 07, 2002 at 12:38:29AM -0700, Kyle Martin wrote:
 > > >Description:
 > >
 > > there is no copyright or license in the source file mentioned above.
 >
 > There are a few files in libc/gen without copyrights:
 >
 > getprogname.c   dd
 > msgctl.c        dfr
 > msgget.c        dfr
 > msgrcv.c        dfr
 > msgsnd.c        dfr
 > semconfig.c     dfr
 > semctl.c        dfr
 > semget.c        dfr
 > semop.c         dfr
 > setprogname.c   dd
 > shmat.c         dfr
 > shmctl.c        dfr
 > shmdt.c         dfr
 > shmget.c        dfr
 >
 > Maybe Doug and Dima could say what copyright should go on them?
 
 Something like this will do fine:
 
 /*-
  * Copyright (c) 2002 Doug Rabson
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
  * 1. Redistributions of source code must retain the above copyright
  *    notice, this list of conditions and the following disclaimer.
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution=
 =2E
  *
  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PUR=
 POSE
  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABL=
 E
  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUEN=
 TIAL
  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOOD=
 S
  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, ST=
 RICT
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY =
 WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
  *=09$FreeBSD$
  */
 
 
 --=20
 Doug Rabson=09=09=09=09Mail:  dfr@nlsystems.com
 =09=09=09=09=09Phone: +44 20 8348 6160
 
Responsible-Changed-From-To: freebsd-bugs->dfr 
Responsible-Changed-By: kris 
Responsible-Changed-When: Sat Jul 12 17:29:27 PDT 2003 
Responsible-Changed-Why:  
Assign to dfr so he can add his own copyright :) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=41397 
State-Changed-From-To: open->closed 
State-Changed-By: maxim 
State-Changed-When: Sun Jul 13 03:19:59 PDT 2003 
State-Changed-Why:  
Fixed in rev. 1.8. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=41397 
>Unformatted:
