From 91e108499e1bb47b90cfd4857824005367a43ee5 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Fri, 15 Sep 2017 08:19:08 +0200 Subject: [PATCH] Convert remaining http:// links to https:// --- README.md | 4 ++-- doc/coding-guidelines | 2 +- src/modules/m_join.c | 2 +- src/modules/m_nick.c | 2 +- src/modules/m_svsmode.c | 2 +- src/win32/debug.c | 2 +- unrealircd.in | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 47fd3c845..126086c99 100644 --- a/README.md +++ b/README.md @@ -45,9 +45,9 @@ Run `./unrealircd start` in the directory where you installed UnrealIRCd. Start -> All Programs -> UnrealIRCd -> UnrealIRCd ## Documentation & FAQ -You can find the **documentation** online at: http://www.unrealircd.org/docs/ +You can find the **documentation** online at: https://www.unrealircd.org/docs/ -We also have a good **FAQ**: http://www.unrealircd.org/docs/FAQ +We also have a good **FAQ**: https://www.unrealircd.org/docs/FAQ ## Website, support, and other links ## * https://www.unrealircd.org - Our main website diff --git a/doc/coding-guidelines b/doc/coding-guidelines index 48affd4c5..521bcd1ca 100644 --- a/doc/coding-guidelines +++ b/doc/coding-guidelines @@ -6,7 +6,7 @@ Rules about patches & modifications to UnrealIRCd 2. If new files are made, it must contain proper copyright headers. 3. If you want to submit patches (f.e. if you don't have write access to - the repository), then submit them to http://bugs.unrealircd.org/ + the repository), then submit them to https://bugs.unrealircd.org/ using "hg export" or "hg diff". Naturally include a clear description of what the change does. diff --git a/src/modules/m_join.c b/src/modules/m_join.c index 7833e8c0f..67f585241 100644 --- a/src/modules/m_join.c +++ b/src/modules/m_join.c @@ -157,7 +157,7 @@ CMD_FUNC(m_join) int r; if (bouncedtimes) - sendto_realops("m_join: bouncedtimes=%d??? [please report at http://bugs.unrealircd.org/]", bouncedtimes); + sendto_realops("m_join: bouncedtimes=%d??? [please report at https://bugs.unrealircd.org/]", bouncedtimes); bouncedtimes = 0; if (IsServer(sptr)) return 0; diff --git a/src/modules/m_nick.c b/src/modules/m_nick.c index 76f602e1c..3fcb7710b 100644 --- a/src/modules/m_nick.c +++ b/src/modules/m_nick.c @@ -1433,7 +1433,7 @@ int _register_user(aClient *cptr, aClient *sptr, char *nick, char *username, cha #ifdef EXPERIMENTAL sendto_one(sptr, - ":%s NOTICE %s :*** \2NOTE:\2 This server is running experimental IRC server software (UnrealIRCd %s). If you find any bugs or problems, please report them at http://bugs.unrealircd.org/", + ":%s NOTICE %s :*** \2NOTE:\2 This server is running experimental IRC server software (UnrealIRCd %s). If you find any bugs or problems, please report them at https://bugs.unrealircd.org/", me.name, sptr->name, VERSIONONLY); #endif #ifdef HOSTILENAME diff --git a/src/modules/m_svsmode.c b/src/modules/m_svsmode.c index eea78183d..65991ebde 100644 --- a/src/modules/m_svsmode.c +++ b/src/modules/m_svsmode.c @@ -451,7 +451,7 @@ int do_svsmode(aClient *cptr, aClient *sptr, int parc, char *parv[], int show_c sendto_realops( "[BUG] server %s tried to set +H while user not an oper, para=%s/%s, " "umodes=%ld, please fix your services or if you think it's our fault, " - "report at http://bugs.unrealircd.org/", sptr->name, parv[1], parv[2], acptr->umodes); + "report at https://bugs.unrealircd.org/", sptr->name, parv[1], parv[2], acptr->umodes); break; /* abort! */ } IRCstats.operators--; diff --git a/src/win32/debug.c b/src/win32/debug.c index 400f554da..d77cd81d6 100644 --- a/src/win32/debug.c +++ b/src/win32/debug.c @@ -320,7 +320,7 @@ LONG __stdcall ExceptionFilter(EXCEPTION_POINTERS *e) { fprintf(fd, "UnrealIRCd has encountered a fatal error. Debugging information " "has been dumped to unrealircd.%d.core, please file a bug and upload " - "this file to http://bugs.unrealircd.org/.", getpid()); + "this file to https://bugs.unrealircd.org/.", getpid()); fclose(fd); } } diff --git a/unrealircd.in b/unrealircd.in index 400c52e1c..315f7fd27 100644 --- a/unrealircd.in +++ b/unrealircd.in @@ -193,7 +193,7 @@ __EOF__ echo "=================== STOP HERE ======================" echo "" echo "Copy the parts between the START HERE and STOP HERE marker" - echo "and report it on http://bugs.unrealircd.org/" + echo "and report it on https://bugs.unrealircd.org/" echo "" echo 'But before you do, note the following:' echo '1. We do not support modifications of any unrealircd code'