We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e393d5e commit b1032c5Copy full SHA for b1032c5
1 file changed
lib/smb.php
@@ -39,7 +39,7 @@ public function __construct($host) {
39
private function tryAuthentication($uid, $password) {
40
$uidEscaped = escapeshellarg($uid);
41
$password = escapeshellarg($password);
42
- $command = self::SMBCLIENT.' '.escapeshellarg('//' . $this->host . '/dummy').' -U'.$uidEscaped.'%'.$password;
+ $command = self::SMBCLIENT.' '.escapeshellarg('//' . $this->host . '/dummy').' -U '.$uidEscaped.'%'.$password;
43
$lastline = exec($command, $output, $retval);
44
if ($retval === 127) {
45
OC::$server->getLogger()->error(
0 commit comments