removed unused code

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1476 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-03-23 05:02:21 +00:00
parent f378f2e5f0
commit 02b12a9a7e

View File

@@ -549,7 +549,6 @@ cmd
| SITE SP KAUTH check_login SP STRING CRLF
{
char *p;
size_t s;
if(guest)
reply(500, "Can't be done as guest.");
@@ -558,11 +557,7 @@ cmd
p = strpbrk($6, " \t");
if(p){
*p++ = 0;
s = strspn(p, " \t");
if(s >= 0)
kauth($6, p + s);
else
kauth($6, p);
kauth($6, p + strspn(p, " \t"));
}else
kauth($6, NULL);
}