summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/build.c8
-rw-r--r--build/parsePrep.c2
2 files changed, 10 insertions, 0 deletions
diff --git a/build/build.c b/build/build.c
index 1b020384e..35f84476d 100644
--- a/build/build.c
+++ b/build/build.c
@@ -210,6 +210,10 @@ fprintf(stderr, "*** addMacros\n");
if (strcmp(rootDir, "/"))
addMacro(spec->macros, "_remroot", NULL, rootDir, RMIL_SPEC);
break;
+ case URL_IS_UNKNOWN:
+ case URL_IS_DASH:
+ case URL_IS_PATH:
+ case URL_IS_HKP:
default:
break;
}
@@ -261,6 +265,10 @@ fprintf(stderr, "*** delMacros\n");
if (strcmp(rootDir, "/"))
delMacro(spec->macros, "_remroot");
break;
+ case URL_IS_UNKNOWN:
+ case URL_IS_DASH:
+ case URL_IS_PATH:
+ case URL_IS_HKP:
default:
break;
}
diff --git a/build/parsePrep.c b/build/parsePrep.c
index 721a03479..e652581b3 100644
--- a/build/parsePrep.c
+++ b/build/parsePrep.c
@@ -116,6 +116,7 @@ static int checkOwners(const char * urlfn)
case URL_IS_HTTPS: /* XXX WRONG WRONG WRONG */
case URL_IS_HTTP: /* XXX WRONG WRONG WRONG */
case URL_IS_FTP: /* XXX WRONG WRONG WRONG */
+ case URL_IS_HKP: /* XXX WRONG WRONG WRONG */
case URL_IS_PATH:
case URL_IS_UNKNOWN:
break;
@@ -221,6 +222,7 @@ static int checkOwners(const char * urlfn)
case URL_IS_HTTPS: /* XXX WRONG WRONG WRONG */
case URL_IS_HTTP: /* XXX WRONG WRONG WRONG */
case URL_IS_FTP: /* XXX WRONG WRONG WRONG */
+ case URL_IS_HKP: /* XXX WRONG WRONG WRONG */
case URL_IS_PATH:
case URL_IS_UNKNOWN:
break;