From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@cse.psu.edu Subject: Re: [9fans] Postgres client monitor, pg9mon Date: Wed, 4 Oct 2000 10:09:30 +0900 From: okamoto@granite.cias.osakafu-u.ac.jp MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20001004010859.4458E199D5@mail> Topicbox-Message-UUID: 13bb6b12-eac9-11e9-9e20-41e7f4b1d025 Oops! An older version file of monitor.c was included in fail. The diff for it is as follows: diff monitor.c.orig monitor.c 393c393,394 < tmon_temp = create(tmon_temp_filename, ORDWR, CHAPPEND|0666); --- > if(tmon_temp = open(tmon_temp_filename, ORDWR) <0) > tmon_temp = create(tmon_temp_filename, ORDWR, 0666); 439c440,441 < tmon_temp = create(tmon_temp_filename, ORDWR, CHAPPEND|0666); --- > if(tmon_temp = open(tmon_temp_filename, ORDWR) <0) > create(tmon_temp_filename, ORDWR, 0666);; I also replaced our web page (http://basalt.cias.osakafu-u.ac.jp/plan9). Kenji