File: 31_sysconf_clocks.patch

package info (click to toggle)
dsniff 2.4b1%2Bdebian-31
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,080 kB
  • sloc: ansic: 10,803; sh: 152; makefile: 127
file content (31 lines) | stat: -rw-r--r-- 846 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Description: Adds a clock fix. It was improved by Robert Scheck <robert@fedoraproject.org> 
to work with older Linux kernel versions, too.
Author: <kees@ubuntu.com>
Origin: http://pkgs.fedoraproject.org/cgit/rpms/dsniff.git/tree/dsniff-2.4-sysconf_clocks.patch
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/

--- a/sshow.c
+++ b/sshow.c
@@ -217,7 +217,9 @@
 {
 	clock_t delay;
 	int payload;
-    long CLK_TCK= sysconf(_SC_CLK_TCK);
+#if defined(_SC_CLK_TCK)
+	long CLK_TCK = sysconf(_SC_CLK_TCK);
+#endif
 
 	delay = add_history(session, 0, cipher_size, plain_range);
 
@@ -266,7 +268,9 @@
 	clock_t delay;
 	int skip;
 	range string_range;
-    long CLK_TCK= sysconf(_SC_CLK_TCK);
+#if defined(_SC_CLK_TCK)
+	long CLK_TCK = sysconf(_SC_CLK_TCK);
+#endif
 	
 	delay = add_history(session, 1, cipher_size, plain_range);