Skip to content

Commit f66b9b5

Browse files
author
Marcus Sorensen
committed
Send only \n rather than \r\n to agent socket when sending cmdline
to system VMS BUG-ID: CLOUDSTACK-1732 Signed-off-by: Marcus Sorensen <marcus@betterservers.com> 1365622030 -0600
1 parent 09542ce commit f66b9b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/vm/hypervisor/kvm/patchviasocket.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@
5353

5454
my $socket = IO::Socket::UNIX->new(Peer=>$sockfile,Type=>SOCK_STREAM)
5555
or die "ERROR: unable to connect to $sockfile - $^E\n";
56-
print $socket "$msg\r\n";
56+
print $socket "$msg\n";
5757
close $socket;
5858

0 commit comments

Comments
 (0)