1993-11-28 07:45:01 +00:00
|
|
|
/*
|
1998-09-17 16:27:15 +00:00
|
|
|
* CU sudo version 1.5.7
|
1993-11-28 07:45:01 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 1, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*
|
1996-09-08 00:21:42 +00:00
|
|
|
* Please send bugs, changes, problems to sudo-bugs@courtesan.com
|
1995-04-09 22:58:55 +00:00
|
|
|
*
|
|
|
|
* $Id$
|
1993-11-28 07:45:01 +00:00
|
|
|
*/
|
|
|
|
|
1994-05-25 01:25:40 +00:00
|
|
|
#ifndef _SUDO_INSULTS_H
|
|
|
|
#define _SUDO_INSULTS_H
|
|
|
|
|
1995-05-02 05:34:59 +00:00
|
|
|
#ifdef USE_INSULTS
|
|
|
|
|
1995-07-23 23:35:14 +00:00
|
|
|
#if !defined(HAL_INSULTS) && !defined(GOONS_INSULTS) && !defined(CLASSIC_INSULTS)
|
|
|
|
# define CLASSIC_INSULTS
|
1996-08-25 17:33:49 +00:00
|
|
|
# define CSOPS_INSULTS
|
1995-07-23 23:35:14 +00:00
|
|
|
#endif
|
|
|
|
|
1993-11-28 07:45:01 +00:00
|
|
|
/*
|
1995-07-23 23:35:14 +00:00
|
|
|
* Use one or more set of insults as defined in options.h.
|
1993-11-28 07:45:01 +00:00
|
|
|
*/
|
1995-07-23 23:35:14 +00:00
|
|
|
|
|
|
|
char *insults[] = {
|
|
|
|
|
|
|
|
# ifdef HAL_INSULTS
|
1995-07-02 00:41:33 +00:00
|
|
|
# include "ins_2001.h"
|
1995-07-23 23:35:14 +00:00
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef GOONS_INSULTS
|
|
|
|
# include "ins_goons.h"
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef CLASSIC_INSULTS
|
|
|
|
# include "ins_classic.h"
|
1995-09-01 03:52:32 +00:00
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifdef CSOPS_INSULTS
|
|
|
|
# include "ins_csops.h"
|
1995-07-23 23:35:14 +00:00
|
|
|
# endif
|
|
|
|
|
|
|
|
(char *) 0
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* How may I insult you? Let me count the ways...
|
|
|
|
*/
|
|
|
|
#define NOFINSULTS (sizeof(insults) / sizeof(insults[0]) - 1)
|
1994-02-09 03:48:58 +00:00
|
|
|
|
1993-11-28 07:45:01 +00:00
|
|
|
/*
|
1995-05-02 05:34:59 +00:00
|
|
|
* return a pseudo-random insult.
|
1993-11-28 07:45:01 +00:00
|
|
|
*/
|
|
|
|
#define INSULT (insults[time(NULL) % NOFINSULTS])
|
|
|
|
|
|
|
|
#endif /* USE_INSULTS */
|
1995-05-02 05:34:59 +00:00
|
|
|
|
|
|
|
#endif /* _SUDO_INSULTS_H */
|