diff options
author | Russ Allbery <rra@stanford.edu> | 2010-03-08 10:44:07 -0800 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2010-03-08 10:44:07 -0800 |
commit | 49f5f195b1615538180055f84f555b62b978fcdf (patch) | |
tree | 2a7458e5fe735e7257c9c1f7c3db5ce0bb196074 | |
parent | bc105004b8e88e1ede75dae0028d3ef10c15b57a (diff) |
Correctly include portable/krb5.h in wallet/krb5.c
We got lucky since client/internal.h includes this anyway, but include
the portability layer properly.
-rw-r--r-- | client/krb5.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/client/krb5.c b/client/krb5.c index 38172ae..aad39f6 100644 --- a/client/krb5.c +++ b/client/krb5.c @@ -10,10 +10,9 @@ */ #include <config.h> +#include <portable/krb5.h> #include <portable/system.h> -#include <krb5.h> - #include <client/internal.h> #include <util/messages-krb5.h> #include <util/messages.h> |