commit - f850236e70ed5627a614d01de2af54581cbce23f
commit + 6be067cef84c15f7e8623ec8fccaf955d98d006b
blob - 6f42bdd820b7c919b76ed4f723900baa5232aa7c
blob + d2433c74f9a4a7dda902b7cb09f1acc7b78ff8d8
--- gotd/parse.y
+++ gotd/parse.y
if (error)
yyerror("got_pathlist_insert: %s", error->msg);
else
- yyerror("duplicate protect namespace %s", namespace);
+ yyerror("duplicate protected namespace %s", namespace);
return -1;
}
TAILQ_FOREACH(pe, &repo->protected_branch_namespaces, entry) {
if (strcmp(pe->path, new) == 0) {
- yyerror("duplicate protect namespace %s", namespace);
+ yyerror("duplicate protected namespace %s", namespace);
return -1;
}
}
TAILQ_FOREACH(pe, &repo->protected_tag_namespaces, entry) {
if (strcmp(pe->path, new) == 0) {
- yyerror("duplicate protect namespace %s", namespace);
+ yyerror("duplicate protected namespace %s", namespace);
return -1;
}
}