mirror of https://github.com/aria2/aria2
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.ccpull/1/head
parent
3a7edb7680
commit
e1a399d419
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue