From dba33d4018c07699b59f024ca61442c896579c64 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 14 Feb 2014 11:48:42 +0100 Subject: Minor style fixes --- src/download-via-ssh/download-via-ssh.cc | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'src/download-via-ssh') diff --git a/src/download-via-ssh/download-via-ssh.cc b/src/download-via-ssh/download-via-ssh.cc index d85f1572f33e..68fdeb4ca25e 100644 --- a/src/download-via-ssh/download-via-ssh.cc +++ b/src/download-via-ssh/download-via-ssh.cc @@ -16,7 +16,9 @@ using namespace nix; // * use a database // * show progress -static std::pair connect(string conn) { + +static std::pair connect(const string & conn) +{ Pipe to, from; to.create(); from.create(); @@ -51,7 +53,9 @@ static std::pair connect(string conn) { return std::pair(to.writeSide.borrow(), from.readSide.borrow()); } -static void substitute(std::pair & pipes, Path storePath, Path destPath) { + +static void substitute(std::pair & pipes, Path storePath, Path destPath) +{ writeInt(cmdSubstitute, pipes.first); writeString(storePath, pipes.first); pipes.first.flush(); @@ -59,7 +63,9 @@ static void substitute(std::pair & pipes, Path storePath, Path std::cout << std::endl; } -static void query(std::pair & pipes) { + +static void query(std::pair & pipes) +{ writeInt(cmdQuery, pipes.first); for (string line; getline(std::cin, line);) { Strings tokenized = tokenizeString(line); @@ -92,6 +98,7 @@ static void query(std::pair & pipes) { } } + void run(Strings args) { if (args.empty()) @@ -129,6 +136,7 @@ void run(Strings args) throw UsageError(format("download-via-ssh: unknown command `%1%'") % *i); } + void printHelp() { std::cerr << "Usage: download-via-ssh --query|--substitute store-path dest-path" << std::endl; -- cgit 1.4.1