Minor fixes, dropped some old distro support

This commit is contained in:
Michiel Broek
2004-02-02 20:27:46 +00:00
parent 3a2b52a619
commit a5998e7721
6 changed files with 17 additions and 41 deletions

View File

@@ -140,12 +140,12 @@ int execute(char *cmd, char *file, char *pkt, char *in, char *out, char *err)
#ifdef __linux__
sync();
#endif
msleep(200);
msleep(300);
rc = _execute(cmd, file, pkt, in, out, err);
#ifdef __linux__
sync();
#endif
msleep(200);
msleep(300);
return rc;
}
@@ -217,12 +217,12 @@ int execsh(char *cmd, char *in, char *out, char *err)
#ifdef __linux__
sync();
#endif
msleep(200);
msleep(300);
rc = _execsh(cmd, in, out, err);
#ifdef __linux__
sync();
#endif
msleep(200);
msleep(300);
return rc;
}