1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-10 03:57:35 +00:00

Kernel: Embrace the SerenityOS name

This commit is contained in:
Andreas Kling 2019-12-29 19:08:02 +01:00
parent 6a94214502
commit fed3416bd2
5 changed files with 7 additions and 7 deletions

View file

@ -1656,7 +1656,7 @@ int Process::sys$uname(utsname* buf)
{
if (!validate_write_typed(buf))
return -EFAULT;
strcpy(buf->sysname, "Serenity");
strcpy(buf->sysname, "SerenityOS");
strcpy(buf->release, "1.0-dev");
strcpy(buf->version, "FIXME");
strcpy(buf->machine, "i686");