From 0087bd0ef24a8e79782ab0baec2ab2942c1115bc Mon Sep 17 00:00:00 2001 From: stark Date: Tue, 24 Jun 1997 03:21:47 +0000 Subject: Submitted by: Gene Stark, Steve Passe, and Robert Sexton (robert@kudra.com) Updated README file with additional helpful information from Steve Passe and added patches from Robert Sexton to eliminate case sensitivity of the xten command. --- usr.sbin/xten/xten.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/xten/xten.c') diff --git a/usr.sbin/xten/xten.c b/usr.sbin/xten/xten.c index 054a064..57d731f 100644 --- a/usr.sbin/xten/xten.c +++ b/usr.sbin/xten/xten.c @@ -160,7 +160,7 @@ char *tab[]; int i; for(i = 0; tab[i] != NULL; i++) { - if(strcmp(s, tab[i]) == 0) return(i); + if(strcasecmp(s, tab[i]) == 0) return(i); } return(-1); } -- cgit v1.1