add ssh-agent via factotum

This commit is contained in:
rsc 2005-02-13 18:04:00 +00:00
parent ea77b9ce7c
commit ce94dbe662
9 changed files with 1267 additions and 59 deletions

View file

@ -40,6 +40,9 @@ ctlwrite(char *a)
Key *k;
Proto *proto;
while(*a == ' ' || *a == '\t' || *a == '\n')
a++;
if(a[0] == '#' || a[0] == '\0')
return 0;
@ -63,7 +66,7 @@ ctlwrite(char *a)
*p++ = '\0';
switch(classify(a)){
default:
werrstr("unknown verb");
werrstr("unknown verb %s", a);
return -1;
case 0: /* key */
attr = parseattr(p);