140040Sjkh/*
240040Sjkh * Simple authentication database handling code.
340040Sjkh *
440040Sjkh * Copyright (c) 1998
540040Sjkh *	Jordan Hubbard.  All rights reserved.
640040Sjkh *
740040Sjkh * Redistribution and use in source and binary forms, with or without
840040Sjkh * modification, are permitted provided that the following conditions
940040Sjkh * are met:
1040040Sjkh * 1. Redistributions of source code must retain the above copyright
1140040Sjkh *    notice, this list of conditions and the following disclaimer,
1240040Sjkh *    verbatim and that no modifications are made prior to this
1340040Sjkh *    point in the file.
1440040Sjkh * 2. Redistributions in binary form must reproduce the above copyright
1540040Sjkh *    notice, this list of conditions and the following disclaimer in the
1640040Sjkh *    documentation and/or other materials provided with the distribution.
1740040Sjkh *
1840040Sjkh * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1940040Sjkh * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2040040Sjkh * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2140040Sjkh * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR HIS PETS BE LIABLE
2240040Sjkh * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2340040Sjkh * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2440040Sjkh * OR SERVICES; LOSS OF USE, DATA, LIFE OR PROFITS; OR BUSINESS INTERRUPTION)
2540040Sjkh * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2640040Sjkh * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2740040Sjkh * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2840040Sjkh * SUCH DAMAGE.
2940040Sjkh */
3040040Sjkh
3184225Sdillon#include <sys/cdefs.h>
3284225Sdillon__FBSDID("$FreeBSD$");
3384225Sdillon
34238481Sdes#include <stdlib.h>
35238481Sdes
3640040Sjkh#include <libutil.h>
3740040Sjkh
3840040Sjkhchar *
3940040Sjkhauth_getval(const char *name)
4040040Sjkh{
41238481Sdes
42238481Sdes	(void)name;
43238481Sdes	return (NULL);
4440040Sjkh}
45