Merge branch '1.0' into 2.0

This commit is contained in:
terrafrost 2016-01-13 16:51:33 -06:00
commit b6899d9e79

View File

@ -169,7 +169,9 @@ class Agent
$length = current(unpack('N', fread($this->fsock, 4)));
$key_blob = fread($this->fsock, $length);
$length = current(unpack('N', fread($this->fsock, 4)));
$key_comment = fread($this->fsock, $length);
if ($length) {
$key_comment = fread($this->fsock, $length);
}
$length = current(unpack('N', substr($key_blob, 0, 4)));
$key_type = substr($key_blob, 4, $length);
switch ($key_type) {