Skip to content

Commit 7fee070

Browse files
author
Ivan Stoev
committed
Periods.
1 parent d8d31c1 commit 7fee070

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ On Ubuntu you can run the following command:
1818
./pcloudcc -h
1919
pCloud console client v.2.0.1
2020
Allowed options:
21-
- -h [ --help ] produce help message
22-
- -u [ --username ] arg pCloud account name
23-
- -p [ --password ] arg pCloud account password
24-
- -c [ --crypto ] arg Crypto password
21+
- -h [ --help ] produce help message.
22+
- -u [ --username ] arg pCloud account name.
23+
- -p [ --password ] arg pCloud account password.
24+
- -c [ --crypto ] arg Crypto password.
2525
- -s [ --passascrypto ] arg Use user password as crypto password also.
2626
- -d [ --daemonize ] Daemonize the process.
2727
- -o [ --commands ] Parent stays alive and processes commands.
2828
- -m [ --mountpoint ] arg Mount point where drive to be mounted.
29-
- -k [ --commands_only ] Daemon already started pass only commands
29+
- -k [ --commands_only ] Daemon already started pass only commands.
3030

3131
If you whant to be able to mount the files system as non root user you will have to create file
3232
/etc/fuse.conf

pCloudCC/control_tools.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ int finalize(){
5757
}
5858
void process_commands()
5959
{
60-
std::cout<< "Supported commands are:" << std::endl << "startcrypto <crypto pass>, stopcrypto, finalize, q, quit" << std::endl;
60+
std::cout<< "Supported commands are:" << std::endl << "startcrypto <crypto pass>, stopcrypt, q, quit" << std::endl;
6161
std::cout<< "> " ;
6262
for (std::string line; std::getline(std::cin, line);) {
6363
if (!line.compare("finalize")) {

pCloudCC/lib/poverlay_linux/debug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020

2121
#ifndef DEBUG_LEVEL
22-
#define DEBUG_LEVEL D_ERROR
22+
#define DEBUG_LEVEL D_NOTICE
2323
#endif
2424

2525
#define DEBUG_FILE "/tmp/overlay_client.log"

pCloudCC/pclsync_lib.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ static void status_change(pstatus_t* status) {
122122
}
123123

124124
static int statrt_crypto (const char* pass) {
125+
g_lib.get_out() << "calling startcrypto pass: "<<pass << std::endl;
125126
g_lib.crypto_pass_ = pass;
126127
lib_setup_cripto();
127128
}

0 commit comments

Comments
 (0)