pathnames.h revision 80649
179980Sobrien/*-
279980Sobrien * Copyright (c) 2000 Mark Knight <markk@knigma.org>
379980Sobrien * All rights reserved.
479980Sobrien *
579980Sobrien * Redistribution and use in source and binary forms, with or without
679980Sobrien * modification, are permitted provided that the following conditions
779980Sobrien * are met:
879980Sobrien * 1. Redistributions of source code must retain the above copyright
979980Sobrien *    notice, this list of conditions and the following disclaimer.
1079980Sobrien * 2. Redistributions in binary form must reproduce the above copyright
1179980Sobrien *    notice, this list of conditions and the following disclaimer in the
1279980Sobrien *    documentation and/or other materials provided with the distribution.
1379980Sobrien *
1479980Sobrien * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1579980Sobrien * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1679980Sobrien * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1779980Sobrien * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1879980Sobrien * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1979980Sobrien * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2079980Sobrien * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2179980Sobrien * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2279980Sobrien * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2379980Sobrien * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2479980Sobrien * SUCH DAMAGE.
2579980Sobrien *
2679980Sobrien * $FreeBSD: head/usr.bin/finger/pathnames.h 80649 2001-07-30 16:50:47Z yar $
2779980Sobrien */
2879980Sobrien
2979980Sobrien#ifndef PATHNAMES_H
3079980Sobrien
3179980Sobrien#define	_PATH_FORWARD	".forward"
3279980Sobrien#define	_PATH_NOFINGER	".nofinger"
3379980Sobrien#define	_PATH_PLAN	".plan"
3479980Sobrien#define	_PATH_PROJECT	".project"
3579980Sobrien#define	_PATH_PUBKEY	".pubkey"
3679980Sobrien
3779980Sobrien#ifndef _PATH_FINGERCONF
3879980Sobrien#define _PATH_FINGERCONF "/etc/finger.conf"
3979980Sobrien#endif /* _PATH_FINGERCONF */
4079980Sobrien
4179980Sobrien#endif /* PATHNAMES_H */
4279980Sobrien