diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-17 19:39:12 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-17 19:39:12 +0100 |
commit | 3093b019d0c8ed64375c46e0ef91f37ee870dc45 (patch) | |
tree | 2af390e4e65cb3f4c4ff0c4505d8af3872c0eaeb /Kernel/Process.cpp | |
parent | 189f234b4708ef14f4c6c2a6df7766a462ebce66 (diff) | |
download | serenity-3093b019d0c8ed64375c46e0ef91f37ee870dc45.zip |
Kernel: Let's have sys$uname() report "i686" instead of "i386"
We wouldn't be able to run on an 80386 without considerable changes,
so let's be honest here and call it i686.
Diffstat (limited to 'Kernel/Process.cpp')
-rw-r--r-- | Kernel/Process.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Process.cpp b/Kernel/Process.cpp index 7b409876f3..88b1275011 100644 --- a/Kernel/Process.cpp +++ b/Kernel/Process.cpp @@ -1516,7 +1516,7 @@ int Process::sys$uname(utsname* buf) strcpy(buf->sysname, "Serenity"); strcpy(buf->release, "1.0-dev"); strcpy(buf->version, "FIXME"); - strcpy(buf->machine, "i386"); + strcpy(buf->machine, "i686"); LOCKER(*s_hostname_lock); strncpy(buf->nodename, s_hostname->characters(), sizeof(utsname::nodename)); return 0; |