Skip to content

Commit

Permalink
include the right gssapi.h
Browse files Browse the repository at this point in the history
some time ago gssapi.h moved to gssapi/gssapi.h, and on some systems
(e.g. FreeBSD) gssapi.h carries a deprecation #warning - which becomes
a fatal error since we're compiling with -Werror
  • Loading branch information
moench-tegeder committed Jan 11, 2016
1 parent 1b90bd4 commit 447a66f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loudmouth/lm-sasl.c
Expand Up @@ -25,7 +25,7 @@
#include <glib.h>

#ifdef HAVE_GSSAPI
#include <gssapi.h>
#include <gssapi/gssapi.h>
#endif

#include "lm-sock.h"
Expand Down

0 comments on commit 447a66f

Please sign in to comment.