~capttofu/drizzle/clientsplit

« back to all changes in this revision

Viewing changes to vio/viotest.cc

Merge-opolis, with Monty's tree for changing mysql_ to drizzle_ in client
https://code.launchpad.net/~drizzle-developers/drizzle/clientsplit

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
        int             fd = -1;
23
23
        char*           hh = "hshshsh\n";
24
24
 
25
 
        DBUG_ENTER("main");
26
 
        DBUG_PROCESS(argv[0]);
27
 
        DBUG_PUSH("d:t");
28
 
 
29
25
        fd = open("/dev/tty", O_WRONLY);
30
26
        if (fd<0)
31
27
        {
42
38
        delete fs;
43
39
        delete ss;
44
40
 
45
 
        DBUG_RETURN(0);
 
41
        return(0);
46
42
}
47
43