diff options
author | james <> | 2008-03-12 01:30:23 +0000 |
---|---|---|
committer | james <> | 2008-03-12 01:30:23 +0000 |
commit | 236863f163db6a700db2d2ea780688f20c00d316 (patch) | |
tree | 57ece731d14a011e60dd934f00f33157b053321a /src | |
parent | 5bffe5e4528e109b346f6dd9128176df912ff4e8 (diff) | |
download | sympathy-236863f163db6a700db2d2ea780688f20c00d316.tar.gz sympathy-236863f163db6a700db2d2ea780688f20c00d316.tar.bz2 sympathy-236863f163db6a700db2d2ea780688f20c00d316.zip |
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r-- | src/ptty.c | 11 | ||||
-rw-r--r-- | src/terminal.c | 4 |
2 files changed, 11 insertions, 4 deletions
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.23 2008/03/12 01:30:23 james + * *** empty log message *** + * * Revision 1.22 2008/03/12 01:26:56 james * *** empty log message *** * @@ -195,10 +198,10 @@ ptty_open (char *path, char *argv[], CRT_Pos * size) if (!argv) argv = default_argv; - if (path[0]=='/') - execv (path, argv); - else - execvp (path, argv); + if (path[0] == '/') + execv (path, argv); + else + execvp (path, argv); _exit (-1); } diff --git a/src/terminal.c b/src/terminal.c index f86154d..9f02a76 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -11,6 +11,9 @@ static char rcsid[] = /* * $Log$ + * Revision 1.23 2008/03/12 01:30:23 james + * *** empty log message *** + * * Revision 1.22 2008/03/11 17:56:50 james * *** empty log message *** * @@ -152,6 +155,7 @@ terminal_close (TTY * _t) // // // + // // to // bottom t->xmit (_t, buf, i); |