From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI autolearn=ham autolearn_force=no version=3.4.4 Received: from minnie.tuhs.org (minnie.tuhs.org [IPv6:2600:3c01:e000:146::1]) by inbox.vuxu.org (Postfix) with ESMTP id AF0152D5CD for ; Sun, 13 Oct 2024 10:22:19 +0200 (CEST) Received: from minnie.tuhs.org (localhost [IPv6:::1]) by minnie.tuhs.org (Postfix) with ESMTP id 5513642617; Sun, 13 Oct 2024 18:22:14 +1000 (AEST) Received: from minun.buric.co (minun.buric.co [51.15.8.196]) by minnie.tuhs.org (Postfix) with ESMTP id E4C4C42611 for ; Sun, 13 Oct 2024 18:22:09 +1000 (AEST) Received: by minun.buric.co (Postfix, from userid 1000) id B813635C07CB; Sun, 13 Oct 2024 04:22:31 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by minun.buric.co (Postfix) with ESMTP id 98A1435C069D; Sun, 13 Oct 2024 04:22:31 -0400 (EDT) Date: Sun, 13 Oct 2024 04:22:31 -0400 (EDT) From: Steve Nickolas X-X-Sender: mary@sd-119843.dedibox.fr To: arnold@skeeve.com In-Reply-To: <202410130546.49D5knwV1564291@freefriends.org> Message-ID: References: <202410130546.49D5knwV1564291@freefriends.org> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Message-ID-Hash: TVON6G4RZ3K4VYGCSJQEGH35HAB3I3UY X-Message-ID-Hash: TVON6G4RZ3K4VYGCSJQEGH35HAB3I3UY X-MailFrom: usotsuki@buric.co X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-tuhs.tuhs.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: tuhs@tuhs.org X-Mailman-Version: 3.3.6b1 Precedence: list Subject: [TUHS] Re: Copyright on 4.2BSD? List-Id: The Unix Heritage Society mailing list Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: On Sat, 12 Oct 2024, arnold@skeeve.com wrote: > Hi All. > > I'm working on revising my book on basic *nix programming, and for > the new chapter on sockets, I want to include some code from 4.2 BSD. > > Is there a copyright file somewhere for that code? I'm sure it's > copyright the Regents of the University of California, but I'd like > to include the text of the copyright in the book, so that everything's > clear. > > Thanks! > > Arnold > >From what I would ascertain it would, logically, fall under a copyright to UCB if it comes from UCB, and under 32V's (questionable) copyright if not. Oldest BSD I have any sort of code for is 4.3 and at least by that point most of the Berkeley stuff is marked with this copyright string: /* * Copyright (c) 198x Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ Some earlier stuff only has the first line. -uso.