#!/bin/sh
# 
# @DEC_COPYRIGHT@
#
# HISTORY
# $Log: syslog_explain.sh,v $
# Revision 1.1.1.1  2003/12/11 15:40:53  ajay
# Importing Evm sources.
#
# Revision 1.1.1.1  2002/09/12 15:44:00  lsn
# EVM source - Linux initial version
#
# Revision 1.1.4.5  1998/02/17  21:48:11  Bruce_Gayliard
# 	EVM submission to BL 15 - code cleanup and QAR's
# 	[1998/02/16  22:46:53  Bruce_Gayliard]
#
# Revision 1.1.2.5  1998/02/14  00:00:12  Jem_Treadwell
# 	Use evmlog to do explanations
# 	[1998/02/13  23:59:28  Jem_Treadwell]
# 
# Revision 1.1.2.4  1997/10/24  18:15:54  Jem_Treadwell
# 	Updated explanations - QAR 56122
# 	[1997/10/24  18:15:07  Jem_Treadwell]
# 
# Revision 1.1.2.3  1997/09/08  19:04:50  Bruce_Gayliard
# 	Fixes for LINUX / portability.
# 	[1997/09/08  19:01:46  Bruce_Gayliard]
# 
# Revision 1.1.2.2  1997/07/26  14:48:38  Jem_Treadwell
# 	Initial submit
# 	[1997/07/26  14:47:54  Jem_Treadwell]
# 
# $EndLog$
# 
# @(#)$RCSfile: syslog_explain.sh,v $ $Revision: 1.1.1.1 $ (DEC) $Date: 2003/12/11 15:40:53 $
# 

. /usr/sbin/evmcommandset

HERE=`dirname $0`

NAME=$1

REF=$2
if [ "$REF" = "-" -o "$REF" = "" ]
then
    REF="cat:evmexp.cat"
fi

# Use the evmlog explanation function to decode the reference
# and display the explanation:
$HERE/../evmlog/evmlog_explain $NAME $REF
exit $?
