1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-11 14:23:23 +00:00

corrected alphabetical order of options (proxy-auth); bad conditional with token

This commit is contained in:
Gerhard Rieger 2008-07-24 07:32:56 +02:00
parent 780b4028fe
commit 5251c21479
4 changed files with 10 additions and 10 deletions

View file

@ -20,7 +20,7 @@ int procan_cdefs(FILE *outfile) {
fprintf(outfile, "#define FD_SETSIZE %u\n", FD_SETSIZE);
#endif
#ifdef NFDBITS
fprintf(outfile, "#define NFDBITS %u\n", (unsigned int)NFDBITS);
fprintf(outfile, "#define NFDBITS "F_Zu"\n", NFDBITS);
#endif
#ifdef O_RDONLY
fprintf(outfile, "#define O_RDONLY %u\n", O_RDONLY);