lr: correct LegalInformation->ApplicationLegalInformation

This commit is contained in:
Michael Scire 2019-09-12 20:59:07 -07:00
parent a7f5113a60
commit c055f42080
2 changed files with 5 additions and 5 deletions

View File

@ -33,8 +33,8 @@ Result lrLrResolveApplicationHtmlDocumentPath(LrLocationResolver* lr, u64 tid, c
Result lrLrResolveDataPath(LrLocationResolver* lr, u64 tid, char *out);
Result lrLrRedirectApplicationControlPath(LrLocationResolver* lr, u64 tid, u64 tid2, const char *path);
Result lrLrRedirectApplicationHtmlDocumentPath(LrLocationResolver* lr, u64 tid, u64 tid2, const char *path);
Result lrLrResolveLegalInformationPath(LrLocationResolver* lr, u64 tid, char *out);
Result lrLrRedirectLegalInformationPath(LrLocationResolver* lr, u64 tid, const char *path);
Result lrLrResolveApplicationLegalInformationPath(LrLocationResolver* lr, u64 tid, char *out);
Result lrLrRedirectApplicationLegalInformationPath(LrLocationResolver* lr, u64 tid, u64 tid2, const char *path);
Result lrLrRefresh(LrLocationResolver* lr);
// IRegisteredLocationResolver

View File

@ -257,12 +257,12 @@ Result lrLrRedirectApplicationHtmlDocumentPath(LrLocationResolver* lr, u64 tid,
return _lrRedirectApplicationPath(&lr->s, 6, tid, tid2, path);
}
Result lrLrResolveLegalInformationPath(LrLocationResolver* lr, u64 tid, char *out) {
Result lrLrResolveApplicationLegalInformationPath(LrLocationResolver* lr, u64 tid, char *out) {
return _lrResolvePath(&lr->s, 7, tid, out);
}
Result lrLrRedirectLegalInformationPath(LrLocationResolver* lr, u64 tid, const char *path) {
return _lrRedirectPath(&lr->s, 8, tid, path);
Result lrLrRedirectApplicationLegalInformationPath(LrLocationResolver* lr, u64 tid, u64 tid2, const char *path) {
return _lrRedirectApplicationPath(&lr->s, 8, tid, tid2, path);
}
Result lrLrRefresh(LrLocationResolver* lr) {