remove venti for now

This commit is contained in:
rsc 2005-01-18 05:25:09 +00:00
parent d338028eeb
commit adbb83845c
53 changed files with 2 additions and 10330 deletions

View file

@ -1,48 +0,0 @@
#include "stdinc.h"
#include "dat.h"
#include "fns.h"
char *host;
void
usage(void)
{
fprint(2, "usage: sync [-h host]\n");
threadexitsall("usage");
}
void
threadmain(int argc, char *argv[])
{
VtConn *z;
ARGBEGIN{
case 'h':
host = EARGF(usage());
if(host == nil)
usage();
break;
default:
usage();
break;
}ARGEND
if(argc != 0)
usage();
fmtinstall('V', vtscorefmt);
z = vtdial(host);
if(z == nil)
sysfatal("could not connect to server: %r");
if(vtconnect(z) < 0)
sysfatal("vtconnect: %r");
if(vtsync(z) < 0)
sysfatal("vtsync: %r");
vthangup(z);
threadexitsall(0);
}