diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-02-27 02:12:15 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-02-27 02:12:15 +0000 |
commit | 357c4e2788d5e9fc0f6d5801c1b730844c58f162 (patch) | |
tree | 1367ffcd33e67383aeb676cd5d423808a2c5643b /package/dropbear | |
parent | 1e1f0a58195b305b0dd60352f21c0c12436fdcd5 (diff) | |
download | upstream-357c4e2788d5e9fc0f6d5801c1b730844c58f162.tar.gz upstream-357c4e2788d5e9fc0f6d5801c1b730844c58f162.tar.bz2 upstream-357c4e2788d5e9fc0f6d5801c1b730844c58f162.zip |
fix pam header related compile error in dropbear
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6397 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/dropbear')
-rw-r--r-- | package/dropbear/patches/160-pam_header.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package/dropbear/patches/160-pam_header.patch b/package/dropbear/patches/160-pam_header.patch new file mode 100644 index 0000000000..1c900f7169 --- /dev/null +++ b/package/dropbear/patches/160-pam_header.patch @@ -0,0 +1,19 @@ +diff -ur dropbear.old/svr-authpam.c dropbear.dev/svr-authpam.c +--- dropbear.old/svr-authpam.c 2006-03-12 05:52:52.000000000 +0100 ++++ dropbear.dev/svr-authpam.c 2007-02-27 02:55:41.382234344 +0100 +@@ -31,14 +31,13 @@ + #include "dbutil.h" + #include "auth.h" + ++#ifdef ENABLE_SVR_PAM_AUTH + #if defined(HAVE_SECURITY_PAM_APPL_H) + #include <security/pam_appl.h> + #elif defined (HAVE_PAM_PAM_APPL_H) + #include <pam/pam_appl.h> + #endif + +-#ifdef ENABLE_SVR_PAM_AUTH +- + struct UserDataS { + char* user; + char* passwd; |