~ubuntu-branches/ubuntu/lucid/openssh/lucid

« back to all changes in this revision

Viewing changes to openbsd-compat/port-aix.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2008-09-30 23:09:58 UTC
  • mfrom: (1.13.3 upstream) (29 hardy)
  • mto: This revision was merged to the branch mainline in revision 43.
  • Revision ID: james.westby@ubuntu.com-20080930230958-o6vsgn8c4mm959s0
Tags: 1:5.1p1-3
* Remove unnecessary ssh-vulnkey output in non-verbose mode when no
  compromised or unknown keys were found (closes: #496495).
* Configure with --disable-strip; dh_strip will deal with stripping
  binaries and will honour DEB_BUILD_OPTIONS (thanks, Bernhard R. Link;
  closes: #498681).
* Fix handling of zero-length server banners (thanks, Tomas Mraz; closes:
  #497026).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: port-aix.h,v 1.27 2006/09/18 13:54:33 dtucker Exp $ */
 
1
/* $Id: port-aix.h,v 1.29 2008/03/09 05:36:55 dtucker Exp $ */
2
2
 
3
3
/*
4
4
 *
5
5
 * Copyright (c) 2001 Gert Doering.  All rights reserved.
6
 
 * Copyright (c) 2004, 2005 Darren Tucker.  All rights reserved.
 
6
 * Copyright (c) 2004,2005,2006 Darren Tucker.  All rights reserved.
7
7
 *
8
8
 * Redistribution and use in source and binary forms, with or without
9
9
 * modification, are permitted provided that the following conditions
103
103
# define getnameinfo(a,b,c,d,e,f,g) (sshaix_getnameinfo(a,b,c,d,e,f,g))
104
104
#endif
105
105
 
 
106
/*
 
107
 * We use getgrset in preference to multiple getgrent calls for efficiency
 
108
 * plus it supports NIS and LDAP groups.
 
109
 */
 
110
#if !defined(HAVE_GETGROUPLIST) && defined(HAVE_GETGRSET)
 
111
# define HAVE_GETGROUPLIST
 
112
# define USE_GETGRSET
 
113
int getgrouplist(const char *, gid_t, gid_t *, int *);
 
114
#endif
 
115
 
106
116
#endif /* _AIX */