35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
Patch by Luciano Bello <luciano@linux.org.ar> for dsniff >= 2.4b1, which
|
|
changes according to /usr/include/time.h, CLK_TCK is the "obsolete POSIX.1-
|
|
1988 name" for CLOCKS_PER_SEC. For further information, please have a look
|
|
to Debian bug ID #420944.
|
|
|
|
--- dsniff-2.4b1/sshow.c 2007-06-22 15:48:00.000000000 -0300
|
|
+++ dsniff-2.4b1/sshow.c.obsolete_time 2007-08-10 19:03:30.000000000 -0300
|
|
@@ -222,7 +222,7 @@
|
|
if (debug)
|
|
printf("- %s -> %s: DATA (%s bytes, %.2f seconds)\n",
|
|
s_saddr(ts), s_daddr(ts), s_range(plain_range),
|
|
- (float)delay / CLK_TCK);
|
|
+ (float)delay / CLOCKS_PER_SEC);
|
|
if (debug > 1)
|
|
print_data(&ts->server, cipher_size);
|
|
|
|
@@ -270,7 +270,7 @@
|
|
if (debug)
|
|
printf("- %s <- %s: DATA (%s bytes, %.2f seconds)\n",
|
|
s_saddr(ts), s_daddr(ts), s_range(plain_range),
|
|
- (float)delay / CLK_TCK);
|
|
+ (float)delay / CLOCKS_PER_SEC);
|
|
if (debug > 1)
|
|
print_data(&ts->client, cipher_size);
|
|
|
|
@@ -299,7 +299,7 @@
|
|
|
|
if (session->state == 1 &&
|
|
#ifdef USE_TIMING
|
|
- now - get_history(session, 2)->timestamp >= CLK_TCK &&
|
|
+ now - get_history(session, 2)->timestamp >= CLOCKS_PER_SEC &&
|
|
#endif
|
|
session->protocol == 1 &&
|
|
(session->history.directions & 7) == 5 &&
|