#!/bin/sh
#
# By faking success we effectively suppress certain special finger targets
# for remote access.
#
# $Id: noremote,v 1.1 1992/09/08 18:49:40 stolcke Exp $
#
case $2 in
local)
	exit 1
	;;
remote)
	exit 0
	;;
esac
