diff options
author | Tiago Batista <tiagosbatista@gmail.com> | 2008-05-06 08:12:03 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-05-06 08:12:03 +1000 |
commit | 674d089beac8a5808a4537b8021e466c4c14f656 (patch) | |
tree | c2a57652efcfeda4c723c0596de04df2ca654cc7 /source4 | |
parent | 714b3a87d2ac21d4d6b7b64d32332487308c6002 (diff) | |
download | samba-674d089beac8a5808a4537b8021e466c4c14f656.tar.gz samba-674d089beac8a5808a4537b8021e466c4c14f656.tar.bz2 samba-674d089beac8a5808a4537b8021e466c4c14f656.zip |
Tiago Batista posted a patch to fix the build:
Trying to compile the latest git tree, I got some errors
"auth/pam_error.h not found" errors, it looks like it moved to
auth/ntlm/pam_errors.h.
Andrew Bartlett
(This used to be commit 95831a015ae076b52256961f771f50dd9b278e33)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/auth/ntlm/auth_unix.c | 2 | ||||
-rw-r--r-- | source4/torture/winbind/struct_based.c | 2 | ||||
-rw-r--r-- | source4/winbind/wb_samba3_cmd.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source4/auth/ntlm/auth_unix.c b/source4/auth/ntlm/auth_unix.c index 5073ba6461..1717b9d0e1 100644 --- a/source4/auth/ntlm/auth_unix.c +++ b/source4/auth/ntlm/auth_unix.c @@ -24,7 +24,7 @@ #include "auth/ntlm/auth_proto.h" #include "system/passwd.h" /* needed by some systems for struct passwd */ #include "lib/socket/socket.h" -#include "auth/pam_errors.h" +#include "auth/ntlm/pam_errors.h" #include "param/param.h" /* TODO: look at how to best fill in parms retrieveing a struct passwd info diff --git a/source4/torture/winbind/struct_based.c b/source4/torture/winbind/struct_based.c index 87378aadb8..31c5b8cf96 100644 --- a/source4/torture/winbind/struct_based.c +++ b/source4/torture/winbind/struct_based.c @@ -26,7 +26,7 @@ #include "libcli/security/security.h" #include "librpc/gen_ndr/netlogon.h" #include "param/param.h" -#include "auth/pam_errors.h" +#include "auth/ntlm/pam_errors.h" #define DO_STRUCT_REQ_REP_EXT(op,req,rep,expected,strict,warnaction,cmt) do { \ NSS_STATUS __got, __expected = (expected); \ diff --git a/source4/winbind/wb_samba3_cmd.c b/source4/winbind/wb_samba3_cmd.c index f0aaaa7778..5ef0339ecb 100644 --- a/source4/winbind/wb_samba3_cmd.c +++ b/source4/winbind/wb_samba3_cmd.c @@ -29,7 +29,7 @@ #include "version.h" #include "librpc/gen_ndr/netlogon.h" #include "libcli/security/security.h" -#include "auth/pam_errors.h" +#include "auth/ntlm/pam_errors.h" #include "auth/credentials/credentials.h" #include "smbd/service_task.h" |