]> git.ipfire.org Git - thirdparty/opentracker.git/commitdiff
fixed typo
authordenis <>
Fri, 15 Dec 2006 22:46:01 +0000 (22:46 +0000)
committerdenis <>
Fri, 15 Dec 2006 22:46:01 +0000 (22:46 +0000)
opentracker.c

index f592fd501976136e9cc5c1366ea2366b4525a29c..1139b9e3ca817d0372c7c639b801c25f4c5b3df5 100644 (file)
@@ -288,7 +288,7 @@ e500:
       reply = malloc( 128 );
       { 
         unsigned long seconds_elapsed = time( NULL ) - ot_start_time;
-        reply_size = sprintf( reply, "%d\n%d\nUp: %ld seconds (%ld hours)\nPertuned by german engineers, currently handling %li connections per second.",
+        reply_size = sprintf( reply, "%d\n%d\nUp: %ld seconds (%ld hours)\nPretuned by german engineers, currently handling %li connections per second.",
         ot_overall_connections, ot_overall_connections, seconds_elapsed, seconds_elapsed / 3600, ot_overall_connections / seconds_elapsed ? seconds_elapsed : 1 );
       }
       break;
@@ -328,8 +328,7 @@ int main()
     uint16 port;
 
     ot_start_time = time( NULL );
-
-    if (socket_bind4_reuse(s,NULL,6969)==-1)
+    if (socket_bind4_reuse(s,NULL,9090)==-1)
         panic("socket_bind4_reuse");
 
     if (socket_listen(s,16)==-1)