[BACK]Return to s_time.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Diff for /src/usr.bin/openssl/s_time.c between version 1.34 and 1.35

version 1.34, 2019/07/14 03:30:46 version 1.35, 2022/08/31 12:29:08
Line 458 
Line 458 
         printf("\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n",          printf("\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n",
             nConn, totalTime, ((double) nConn / totalTime), bytes_read);              nConn, totalTime, ((double) nConn / totalTime), bytes_read);
         printf("%d connections in %.0f real seconds, %ld bytes read per connection\n",          printf("%d connections in %.0f real seconds, %ld bytes read per connection\n",
             nConn,              nConn, elapsed, nConn > 0 ? bytes_read / nConn : 0);
             elapsed,  
             bytes_read / nConn);  
   
         ret = 0;          ret = 0;
  end:   end:

Legend:
Removed from v.1.34  
changed lines
  Added in v.1.35