diff options
author | Jeff Layton <jlayton@samba.org> | 2017-02-23 20:56:27 -0500 |
---|---|---|
committer | Jeff Layton <jlayton@samba.org> | 2017-02-24 07:12:14 -0500 |
commit | ebdd0a9d9745f19a13415a65914dcc9993f28e96 (patch) | |
tree | dc779a4b54c7692045a7bd18da7a194db5e31888 | |
parent | 912cbe49114392bd7c375c4c37698d406eb0660e (diff) | |
download | cifs-utils-ebdd0a9d9745f19a13415a65914dcc9993f28e96.tar.gz cifs-utils-ebdd0a9d9745f19a13415a65914dcc9993f28e96.tar.bz2 cifs-utils-ebdd0a9d9745f19a13415a65914dcc9993f28e96.zip |
spengo.c/asn1.c: remove need for replace.h
Just need stdbool.h instead.
Signed-off-by: Jeff Layton <jlayton@samba.org>
-rw-r--r-- | asn1.c | 2 | ||||
-rw-r--r-- | spnego.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -20,8 +20,8 @@ #include <string.h> #include <talloc.h> #include <stdint.h> +#include <stdbool.h> -#include "replace.h" #include "data_blob.h" #include "asn1.h" @@ -21,8 +21,8 @@ #include <talloc.h> #include <stdint.h> +#include <stdbool.h> -#include "replace.h" #include "data_blob.h" #include "asn1.h" #include "spnego.h" |