diff options
author | 2009-08-12 22:15:53 +0000 | |
---|---|---|
committer | 2009-08-12 22:15:53 +0000 | |
commit | d6e86d8b6fd2e12edc5585032ebbbc6f20c19617 (patch) | |
tree | 74862ade9104bf47f511cf92065157d79df3d7a9 | |
parent | Optimize Syndrome calculation, 30% speedup on writes (diff) | |
download | wireguard-openbsd-d6e86d8b6fd2e12edc5585032ebbbc6f20c19617.tar.xz wireguard-openbsd-d6e86d8b6fd2e12edc5585032ebbbc6f20c19617.zip |
i am sorry to commit to userland from a kernel hackathon
-rw-r--r-- | usr.bin/mg/theo.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/mg/theo.c b/usr.bin/mg/theo.c index f70da351127..0d9e5fad54b 100644 --- a/usr.bin/mg/theo.c +++ b/usr.bin/mg/theo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: theo.c,v 1.110 2009/07/07 07:39:14 jasper Exp $ */ +/* $OpenBSD: theo.c,v 1.111 2009/08/12 22:15:53 henning Exp $ */ /* * Copyright (c) 2002 Artur Grabowski <art@openbsd.org> * All rights reserved. @@ -153,7 +153,8 @@ static const char *talk[] = { "the kernel is a harsh mistress", "Have I ever been subtle? If my approach ever becomes subtle, shoot me.", "the acpi stabs you in the back. the acpi stabs you in the back. you die ...", - "My cats are more observant than you." + "My cats are more observant than you.", + "our kernels have no bugs" }; static const int ntalk = sizeof(talk)/sizeof(talk[0]); |