xref: /freebsd/usr.bin/finger/pathnames.h (revision b3e7694832e81d7a904a10f525f8797b753bf0d3)
1098c6e87SBrian Somers /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
31de7b4b8SPedro F. Giffuni  *
4098c6e87SBrian Somers  * Copyright (c) 2000 Mark Knight <markk@knigma.org>
5098c6e87SBrian Somers  * All rights reserved.
6098c6e87SBrian Somers  *
7098c6e87SBrian Somers  * Redistribution and use in source and binary forms, with or without
8098c6e87SBrian Somers  * modification, are permitted provided that the following conditions
9098c6e87SBrian Somers  * are met:
10098c6e87SBrian Somers  * 1. Redistributions of source code must retain the above copyright
11098c6e87SBrian Somers  *    notice, this list of conditions and the following disclaimer.
12098c6e87SBrian Somers  * 2. Redistributions in binary form must reproduce the above copyright
13098c6e87SBrian Somers  *    notice, this list of conditions and the following disclaimer in the
14098c6e87SBrian Somers  *    documentation and/or other materials provided with the distribution.
15098c6e87SBrian Somers  *
16098c6e87SBrian Somers  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17098c6e87SBrian Somers  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18098c6e87SBrian Somers  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19098c6e87SBrian Somers  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20098c6e87SBrian Somers  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21098c6e87SBrian Somers  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22098c6e87SBrian Somers  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23098c6e87SBrian Somers  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24098c6e87SBrian Somers  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25098c6e87SBrian Somers  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26098c6e87SBrian Somers  * SUCH DAMAGE.
27098c6e87SBrian Somers  */
28098c6e87SBrian Somers 
29040864acSBrian Somers #ifndef PATHNAMES_H
30040864acSBrian Somers 
31040864acSBrian Somers #define	_PATH_FORWARD	".forward"
32b95dbabaSYaroslav Tykhiy #define	_PATH_NOFINGER	".nofinger"
33040864acSBrian Somers #define	_PATH_PLAN	".plan"
34040864acSBrian Somers #define	_PATH_PROJECT	".project"
35a6115eb2SDag-Erling Smørgrav #define	_PATH_PUBKEY	".pubkey"
36040864acSBrian Somers 
37098c6e87SBrian Somers #ifndef _PATH_FINGERCONF
38098c6e87SBrian Somers #define _PATH_FINGERCONF "/etc/finger.conf"
39098c6e87SBrian Somers #endif /* _PATH_FINGERCONF */
40040864acSBrian Somers 
41040864acSBrian Somers #endif /* PATHNAMES_H */
42