From 4013205ecb3aa10d2bb61e3070015bd056cddb5a Mon Sep 17 00:00:00 2001 From: "alecf%flett.org" Date: Thu, 22 May 2003 20:59:55 +0000 Subject: [PATCH] slightly change the spacetrace output so people know what to DO with port 1969 this is a spacetrace-only change, not part of the build git-svn-id: svn://10.0.0.236/trunk@142763 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/tools/trace-malloc/spacetrace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/tools/trace-malloc/spacetrace.c b/mozilla/tools/trace-malloc/spacetrace.c index 47bf6eef732..eca0aab25de 100644 --- a/mozilla/tools/trace-malloc/spacetrace.c +++ b/mozilla/tools/trace-malloc/spacetrace.c @@ -5660,7 +5660,7 @@ void handleClient(void* inArg) ** mime type, otherwise, say it is text/html. */ PR_fprintf(aFD, "HTTP/1.1 200 OK%s", crlf); - PR_fprintf(aFD, "Server: %s%s", "$Id: spacetrace.c,v 1.41 2003-04-21 07:26:05 alecf%netscape.com Exp $", crlf); + PR_fprintf(aFD, "Server: %s%s", "$Id: spacetrace.c,v 1.42 2003-05-22 20:59:55 alecf%flett.org Exp $", crlf); PR_fprintf(aFD, "Content-type: "); if(NULL != strstr(start, ".png")) { @@ -5781,7 +5781,7 @@ int serverMode(void) /* ** Output a little message saying we are receiving. */ - PR_snprintf(message, sizeof(message), "server accepting connections on port %u....", globals.mCommandLineOptions.mHttpdPort); + PR_snprintf(message, sizeof(message), "server accepting connections at http://localhost:%u/", globals.mCommandLineOptions.mHttpdPort); REPORT_INFO(message); PR_fprintf(PR_STDOUT, "Peak memory used: %s bytes\n", FormatNumber(globals.mPeakMemoryUsed));