Module Name: src
Committed By: martin
Date: Thu Sep 6 07:56:40 UTC 2018
Modified Files:
src/usr.sbin/sysinst: defs.h
Log Message:
Fix previous in case when BUILDID is passed - the subdirectory has the
same name as the BUILDID (which already includes the trailing "Z", no need
to append it again)
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/usr.sbin/sysinst/defs.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/sysinst/defs.h
diff -u src/usr.sbin/sysinst/defs.h:1.13 src/usr.sbin/sysinst/defs.h:1.14
--- src/usr.sbin/sysinst/defs.h:1.13 Wed Sep 5 12:49:55 2018
+++ src/usr.sbin/sysinst/defs.h Thu Sep 6 07:56:40 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: defs.h,v 1.13 2018/09/05 12:49:55 martin Exp $ */
+/* $NetBSD: defs.h,v 1.14 2018/09/06 07:56:40 martin Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -344,7 +344,7 @@ int clean_xfer_dir;
#if defined(NETBSD_OFFICIAL_RELEASE)
#define SYSINST_FTP_DIR "pub/NetBSD/NetBSD-" REL
#elif defined(BUILDID) && defined(REL_PATH)
-#define SYSINST_FTP_DIR "pub/NetBSD-daily/" REL_PATH "/" BUILDID "Z"
+#define SYSINST_FTP_DIR "pub/NetBSD-daily/" REL_PATH "/" BUILDID
#elif defined(REL_PATH)
#define SYSINST_FTP_DIR "pub/NetBSD-daily/" REL_PATH
#else