]> git.armaanb.net Git - opendoas.git/commitdiff
doas grows up. no insults.
authorTed Unangst <tedu@openbsd.org>
Thu, 16 Jul 2015 21:55:03 +0000 (21:55 +0000)
committerTed Unangst <tedu@openbsd.org>
Thu, 16 Jul 2015 21:55:03 +0000 (21:55 +0000)
doas.c

diff --git a/doas.c b/doas.c
index c658e9cbe6d056221c7c530fb05479b366a08967..1e1fb530f737c28845080ac31554498734c6efb9 100644 (file)
--- a/doas.c
+++ b/doas.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: doas.c,v 1.1 2015/07/16 20:44:21 tedu Exp $ */
+/* $OpenBSD: doas.c,v 1.2 2015/07/16 21:00:59 tedu Exp $ */
 /*
  * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org>
  *
@@ -223,22 +223,7 @@ copyenv(const char **oldenvp, struct rule *rule)
 static void __dead
 fail(void)
 {
-       const char *msgs[] = {
-               "No lollygagging!",
-               "Better luck next time.",
-               "PEBKAC detected.",
-               "That's what happens when you're lazy.",
-               "It is clear that this has not been thought through.",
-               "That's the most ridiculous thing I've heard in the last two or three minutes!",
-               "No sane people allowed here.  Go home.",
-               "I would explain, but I am too drunk.",
-               "You're not allowed to have an opinion.",
-               "Complaint forms are handled in another department.",
-       };
-       const char *m;
-
-       m = msgs[arc4random_uniform(sizeof(msgs) / sizeof(msgs[0]))];
-       fprintf(stderr, "%s\n", m);
+       fprintf(stderr, "Permission denied\n");
        exit(1);
 }