diff options
author | Jeff Layton <jlayton@redhat.com> | 2010-02-07 10:54:13 -0500 |
---|---|---|
committer | Jeff Layton <jlayton@redhat.com> | 2010-02-07 10:54:13 -0500 |
commit | 055f09f3ede1c9fb946cdc8ccad86b1185396e01 (patch) | |
tree | c5bc693b6229f2738ca3ba6bf263147369802fd2 | |
parent | 96ff754155ef13681c79ccbda2d998f411ac0e6f (diff) | |
download | cifs-utils-055f09f3ede1c9fb946cdc8ccad86b1185396e01.tar.gz cifs-utils-055f09f3ede1c9fb946cdc8ccad86b1185396e01.tar.bz2 cifs-utils-055f09f3ede1c9fb946cdc8ccad86b1185396e01.zip |
cifs.upcall: fix up the includes
Signed-off-by: Jeff Layton <jlayton@redhat.com>
-rw-r--r-- | cifs.upcall.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/cifs.upcall.c b/cifs.upcall.c index eb2279a..964bbbd 100644 --- a/cifs.upcall.c +++ b/cifs.upcall.c @@ -25,12 +25,19 @@ create dns_resolver * * /usr/local/sbin/cifs.upcall %k * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "includes.h" -#include "../libcli/auth/spnego.h" -#include "smb_krb5.h" -#include <keyutils.h> +#include <string.h> #include <getopt.h> +#include <krb5.h> +#include <syslog.h> +#include <dirent.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <unistd.h> +#include <keyutils.h> + +#include "replace.h" +#include "data_blob.h" #include "cifs_spnego.h" #define CIFS_DEFAULT_KRB5_DIR "/tmp" |