File: 18_sshcrypto.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 (17 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Author: Steve Kemp <skx@debian.org>
Description: Missing openssl  includes in sshcrypto.c. 
This patch was through diff.gz and now is implemented as a dpatch.
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/

--- a/sshcrypto.c
+++ b/sshcrypto.c
@@ -14,6 +14,8 @@
 
 #include <sys/types.h>
 #include <openssl/ssl.h>
+#include <openssl/blowfish.h>
+#include <openssl/des.h>
 
 #include <err.h>
 #include <stdio.h>