1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-28 21:32:56 +00:00

New feature SHELL address

This commit is contained in:
Gerhard Rieger 2023-10-01 21:24:46 +02:00
parent 50b199dcd9
commit 03f028a985
15 changed files with 399 additions and 45 deletions

View file

@ -644,6 +644,11 @@ void socat_version(FILE *fd) {
#else
fputs(" #undef WITH_SYSTEM\n", fd);
#endif
#ifdef WITH_SHELL
fprintf(fd, " #define WITH_SHELL %d\n", WITH_SHELL);
#else
fputs(" #undef WITH_SHELL\n", fd);
#endif
#ifdef WITH_EXEC
fprintf(fd, " #define WITH_EXEC %d\n", WITH_EXEC);
#else