mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Merge pull request #899 from MatAtBread/issue-898
Merge PR #899: Set unbuffered mode for *nix systems stdout, allowing interactive use…
This commit is contained in:
commit
bf8cd35508
@ -35,6 +35,9 @@ int main(int argc, char *argv[])
|
||||
|
||||
#ifdef OS_WIN32
|
||||
SetConsoleTitleA(CEDAR_PRODUCT_STR " VPN Command Line Utility");
|
||||
#else
|
||||
// For *nix, disable output buffering to allow for interactive use
|
||||
setbuf(stdout,NULL);
|
||||
#endif // OS_WIN32
|
||||
|
||||
#if defined(_DEBUG) || defined(DEBUG) // In VC++ compilers, the macro is "_DEBUG", not "DEBUG".
|
||||
|
Loading…
Reference in New Issue
Block a user