Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Path: utzoo!mnetor!seismo!ut-sally!husc6!cmcl2!brl-adm!brl-smoke!gwyn
From: gwyn@brl-smoke.ARPA (Doug Gwyn )
Newsgroups: comp.sources.bugs
Subject: Re: Problems with Centipede
Message-ID: <6077@brl-smoke.ARPA>
Date: Mon, 6-Jul-87 18:58:45 EDT
Article-I.D.: brl-smok.6077
Posted: Mon Jul  6 18:58:45 1987
Date-Received: Wed, 8-Jul-87 01:26:42 EDT
References: <1031@bucsb.bu.edu.UUCP> <758@soliloquy.rutgers.edu>
Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB) )
Organization: Ballistic Research Lab (BRL), APG, MD.
Lines: 15
Keywords: centipede

In article <758@soliloquy.rutgers.edu> dpz@soliloquy.rutgers.edu (David P. Zimmerman) writes:
-109c109
-<     register char ch;
----
->     register char *ch;
-133c133
-<     read(fd,&ch,1);
----
->     read(fd,ch,1);
-135c135
-<       ch != MAGICNUM)
----
->       *ch != MAGICNUM)

NO!  What is `ch' pointing to?