#!/bin/sh
# 
# @DEC_COPYRIGHT@
#
# HISTORY
# $Log: misclog_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:43:59  lsn
# EVM source - Linux initial version
#
# Revision 1.1.8.1  2001/09/26  18:58:41  Anthony_Hoffman
# 	redo of wildcatos submits
#
# Revision 1.1.6.1  2001/07/30  18:08:40  Anthony_Hoffman
# 	wc.evm.002.portability
#
# Revision 1.1.4.2  1999/03/19  21:53:47  Bruce_Gayliard
# 	Drop from EVM shared sandbox to steel BL 23.
# 	[1999/03/19  13:31:08  Bruce_Gayliard]
#
# Revision 1.1.2.2  1999/03/16  19:28:29  Jem_Treadwell
# 	Initial submit of misclog channel - QAR 69538
# 	[1999/03/16  19:27:43  Jem_Treadwell]
# 
# $EndLog$
# 
# @(#)$RCSfile: misclog_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 $?
