2008-12-23 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>

Added the preceding ">>> " before the message "Printing the
	contents of file..." to make the output more readable.
	* src/main.cc
pull/1/head
Tatsuhiro Tsujikawa 2008-12-23 02:44:11 +00:00
parent 3a7edb7680
commit e1a399d419
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2008-12-23 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Added the preceding ">>> " before the message "Printing the
contents of file..." to make the output more readable.
* src/main.cc
2008-12-23 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Added try-catch block in the loop in showFiles() to continue the

View File

@ -125,6 +125,7 @@ static void showFiles(const std::deque<std::string>& uris, const Option* op)
ProtocolDetector dt;
for(std::deque<std::string>::const_iterator i = uris.begin();
i != uris.end(); ++i) {
printf(">>> ");
printf(MSG_SHOW_FILES, (*i).c_str());
printf("\n");
try {