From e5b03634aef2ac38c3b5a9a3d7521f9a894c5d22 Mon Sep 17 00:00:00 2001 From: Brandon Coleman Date: Sat, 25 Oct 2014 11:01:58 -0500 Subject: [PATCH 1/2] correct spelling on user is empty error. --- src/libsync/creds/abstractcredentials.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsync/creds/abstractcredentials.cpp b/src/libsync/creds/abstractcredentials.cpp index b248b39f59..c8b8b39bba 100644 --- a/src/libsync/creds/abstractcredentials.cpp +++ b/src/libsync/creds/abstractcredentials.cpp @@ -28,7 +28,7 @@ QString AbstractCredentials::keychainKey(const QString &url, const QString &user return QString::null; } if( user.isEmpty() ) { - qDebug() << "Error: User is emty!"; + qDebug() << "Error: User is empty!"; return QString::null; } From ece1100d6582acc9265c54622e2882c9e7d3b955 Mon Sep 17 00:00:00 2001 From: Brandon Coleman Date: Sun, 26 Oct 2014 15:33:50 -0500 Subject: [PATCH 2/2] options are required at the beginning of owncloudcmd. --- src/cmd/cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/cmd.cpp b/src/cmd/cmd.cpp index 877e8fd4b0..4fd975f82e 100644 --- a/src/cmd/cmd.cpp +++ b/src/cmd/cmd.cpp @@ -140,7 +140,7 @@ void help() std::cout << binaryName << " - command line " APPLICATION_NAME " client tool" << std::endl; std::cout << "" << std::endl; - std::cout << "Usage: " << binaryName << " " << std::endl; + std::cout << "Usage: " << binaryName << " [OPTION] " << std::endl; std::cout << "" << std::endl; std::cout << "A proxy can either be set manually using --httpproxy." << std::endl; std::cout << "Otherwise, the setting from a configured sync client will be used." << std::endl;