Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / security / mit-krb5 / patches / patch-al
blobc82a4f01c02875892a487dc750d9adef9f92b7e2
1 $NetBSD: patch-al,v 1.5 2011/03/22 23:31:04 tez Exp $
3 Add DragonFly support. Fallback to LINE_MAX if BUFSIZ is not defined.
5 --- lib/gssapi/krb5/import_name.c.orig  Sat Dec 11 20:12:52 2010
6 +++ lib/gssapi/krb5/import_name.c       Sat Dec 11 20:13:40 2010
7 @@ -28,10 +28,15 @@
8  #include "gssapiP_krb5.h"
9  
10  #ifndef NO_PASSWORD
11 +#include <limits.h>
12  #include <pwd.h>
13  #include <stdio.h>
14  #endif
16 +#ifndef BUFSIZ
17 +#define BUFSIZ LINE_MAX
18 +#endif
20  #ifdef HAVE_STRING_H
21  #include <string.h>
22  #else