From mboxrd@z Thu Jan 1 00:00:00 1970 From: Geoff Collyer To: 9fans@collyer.net MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20020324045637.87E9219988@mail.cse.psu.edu> Subject: [9fans] palmld fix Date: Sat, 23 Mar 2002 20:56:35 -0800 Topicbox-Message-UUID: 6d00264e-eaca-11e9-9e20-41e7f4b1d025 Colin DeVilbiss found a bug in palmld; I used NAMELEN instead of the maximum length of a Palm file name component. Here's my version of his fix: 28a29 > Maxpalmname = 32, /* bytes */ 229c230 < int maxfull = NAMELEN - 1 + strlen(ext) + 1; --- > int maxfull = Maxpalmname + strlen(ext) + 1; I've updated the distribution, http://www.collyer.net/~geoff/9/palmld.tar.gz.