vms_basename fix

vms_basename() was recently changed to take a second argument to
control whether to include the suffix portion of the name (used for
DEBUGFILES) but an existing call still had only one.
This commit is contained in:
PatR
2023-06-22 15:30:27 -07:00
parent c86595001c
commit 643b78bc40

View File

@@ -52,7 +52,7 @@ main(int argc, char *argv[])
atexit(byebye);
gh.hname = argv[0];
gh.hname = vms_basename(gh.hname); /* name used in 'usage' type messages */
gh.hname = vms_basename(gh.hname, FALSE); /* used in 'usage' type mesgs */
gh.hackpid = getpid();
(void) umask(0);