Change references to eduke32.sourceforge.net to www.eduke32.com

git-svn-id: https://svn.eduke32.com/eduke32@5486 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2015-12-23 04:06:09 +00:00
parent c00f933a37
commit 49dd9ca9b7
2 changed files with 4 additions and 4 deletions

View file

@ -11579,10 +11579,10 @@ int32_t app_main(int32_t argc, const char **argv)
if (Batoi(tempbuf) > atoi(s_buildDate)) if (Batoi(tempbuf) > atoi(s_buildDate))
{ {
if (wm_ynbox("EDuke32","A new version of EDuke32 is available. " if (wm_ynbox("EDuke32","A new version of EDuke32 is available. "
"Browse to http://eduke32.sourceforge.net now?")) "Browse to http://www.eduke32.com now?"))
{ {
SHELLEXECUTEINFOA sinfo; SHELLEXECUTEINFOA sinfo;
char *p = "http://eduke32.sourceforge.net"; char *p = "http://www.eduke32.com";
Bmemset(&sinfo, 0, sizeof(sinfo)); Bmemset(&sinfo, 0, sizeof(sinfo));
sinfo.cbSize = sizeof(sinfo); sinfo.cbSize = sizeof(sinfo);

View file

@ -40,8 +40,8 @@ int32_t G_GetVersionFromWebsite(char *buffer)
int32_t bytes_sent, i=0, j=0; int32_t bytes_sent, i=0, j=0;
struct sockaddr_in dest_addr; struct sockaddr_in dest_addr;
struct hostent *h; struct hostent *h;
char *host = "eduke32.sourceforge.net"; char *host = "www.eduke32.com";
char *req = "GET http://eduke32.sourceforge.net/VERSION HTTP/1.0\r\n\r\n\r\n"; char *req = "GET http://www.eduke32.com/VERSION HTTP/1.0\r\n\r\n\r\n";
char *tok; char *tok;
char tempbuf[2048],otherbuf[16],ver[16]; char tempbuf[2048],otherbuf[16],ver[16];
SOCKET mysock; SOCKET mysock;