Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/18/84 exptools; site ihuxx.UUCP Path: utzoo!watmath!clyde!burl!ulysses!mhuxr!mhuxn!ihnp4!ihuxx!steffen From: steffen@ihuxx.UUCP (Joe Steffen) Newsgroups: net.bugs Subject: bug in AT&T Toolchest version of vsh Message-ID: <921@ihuxx.UUCP> Date: Tue, 30-Jul-85 11:59:19 EDT Article-I.D.: ihuxx.921 Posted: Tue Jul 30 11:59:19 1985 Date-Received: Thu, 1-Aug-85 22:05:42 EDT Distribution: net Organization: AT&T Bell Laboratories Lines: 35 There is a bug in the AT&T Toolchest version of vsh that prevents it from finding the help files. In help.c, change: /* get the help file pathname */ if ((s = getenv("TOOLS")) != 0) { strcpy(pathname, s); strcat(pathname, "/"); } strcat(pathname, parm); to: /* get the help file pathname */ if ((s = getenv("TOOLS")) != 0) { strcpy(pathname, s); strcat(pathname, "/"); strcat(pathname, parm); } else { strcpy(pathname, parm); } or, more simply: /* get the help file pathname */ strcpy(pathname, parm); The TOOLS code was added for our experimental tools (exptools) version, unfortunately it added a latent bug for the regular version. This version of vsh is Dave Scheibelhut's original plus my enhancements. -- Joe Steffen, AT&T Bell Labs, Naperville, IL, (312) 979-5381