mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
7 lines
268 B
C++
7 lines
268 B
C++
#pragma once
|
|
|
|
/** If there are --password=... or --password ... arguments in command line, replace their values with zero bytes.
|
|
* This is needed to prevent password exposure in 'ps' and similar tools.
|
|
*/
|
|
void clearPasswordFromCommandLine(int argc, char ** argv);
|