[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] r1163 - GNUnet/src/applications/fs/tools
From: |
grothoff |
Subject: |
[GNUnet-SVN] r1163 - GNUnet/src/applications/fs/tools |
Date: |
Thu, 30 Jun 2005 09:06:14 -0700 (PDT) |
Author: grothoff
Date: 2005-06-30 09:06:12 -0700 (Thu, 30 Jun 2005)
New Revision: 1163
Modified:
GNUnet/src/applications/fs/tools/gnunet-insert.c
Log:
typo
Modified: GNUnet/src/applications/fs/tools/gnunet-insert.c
===================================================================
--- GNUnet/src/applications/fs/tools/gnunet-insert.c 2005-06-30 15:58:26 UTC
(rev 1162)
+++ GNUnet/src/applications/fs/tools/gnunet-insert.c 2005-06-30 16:06:12 UTC
(rev 1163)
@@ -124,8 +124,8 @@
case FSUI_upload_progress:
if (*verboselevel == YES) {
delta = event->data.UploadProgress.eta - cronTime(NULL);
- PRINTF(
- _("%16llu of %16llu bytes inserted (estimating %llu seconds to
completion) "),
+ PRINTF(_("%16llu of %16llu bytes inserted "
+ "(estimating %llu seconds to completion) "),
event->data.UploadProgress.main_completed,
event->data.UploadProgress.main_total,
delta / cronSECONDS);
@@ -138,7 +138,7 @@
event->data.UploadComplete.main_filename)) {
delta = event->data.UploadComplete.eta
- event->data.UploadComplete.start_time;
- PRINTF(_("\nUpload of '%s' complete, "
+ PRINTF(_("Upload of '%s' complete, "
"%llu bytes took %llu seconds (%8.3f kbps).\n"),
event->data.UploadComplete.filename,
event->data.UploadComplete.total,
@@ -149,17 +149,16 @@
/ 1024.0 * cronSECONDS / delta));
} else {
cron_t now;
- cronTime(&now);
+ cronTime(&now);
delta = now - event->data.UploadComplete.start_time;
- PRINTF(_("\nUpload of '%s' complete, "
+ PRINTF(_("Upload of '%s' complete, "
"current average speed is %8.3f kbps.\n"),
event->data.UploadComplete.filename,
(delta == 0)
? (double) (-1.0)
- : (double) (event->data.UploadComplete.completed,
- / 1024.0 * cronSECONDS / delta));
-
+ : (double) (event->data.UploadComplete.completed
+ / 1024.0 * cronSECONDS / delta));
}
}
fstring = ECRS_uriToString(event->data.UploadComplete.uri);
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] r1163 - GNUnet/src/applications/fs/tools,
grothoff <=