Browse Source

Tweak default hostname.

Andreas Kling 6 years ago
parent
commit
bb9766ee17
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Kernel/Process.cpp

+ 1 - 1
Kernel/Process.cpp

@@ -51,7 +51,7 @@ void Process::initialize()
 #endif
     next_pid = 0;
     g_processes = new InlineLinkedList<Process>;
-    s_hostname = new String("birx");
+    s_hostname = new String("courage");
     Scheduler::initialize();
 }