Deleted Added
full compact
7c7
< * $Id: system.c,v 1.54 1996/04/28 01:07:27 jkh Exp $
---
> * $Id: system.c,v 1.55 1996/04/28 03:27:26 jkh Exp $
112c112,117
< status = system(command);
---
> if (!Fake)
> status = system(command);
> else {
> status = 0;
> msgDebug("systemExecute: Faked execution of `%s'\n", command);
> }
201a207,210
> if (Fake) {
> msgDebug("vsystem: Faked execution of `%s'\n", cmd);
> return 0;
> }