浏览代码

Tweak default hostname.

Andreas Kling 6 年之前
父节点
当前提交
bb9766ee17
共有 1 个文件被更改,包括 1 次插入1 次删除
  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();
 }