From 643b78bc400ff27b68248b925c66c859d3bbee94 Mon Sep 17 00:00:00 2001 From: PatR Date: Thu, 22 Jun 2023 15:30:27 -0700 Subject: [PATCH] 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. --- sys/vms/vmsmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/vms/vmsmain.c b/sys/vms/vmsmain.c index 549da2eac..17bcc69bd 100644 --- a/sys/vms/vmsmain.c +++ b/sys/vms/vmsmain.c @@ -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);