~ubuntu-branches/ubuntu/feisty/openafs/feisty

« back to all changes in this revision

Viewing changes to src/afs/LINUX/osi_sysctl.c

  • Committer: Package Import Robot
  • Author(s): Russ Allbery
  • Date: 2007-03-26 18:56:55 UTC
  • Revision ID: package-import@ubuntu.com-20070326185655-osce8n0y0dptgurh
* New upstream release.  (Closes: #415699)
  - Support newer Linux kernels.  (Closes: #409797, #410120)
  - Add aklog fallbacks for null realms to support the referral
    capability in MIT Kerberos 1.6 and later.  (Closes: #410314)
* Apply patch from Thomas Sesselmann to support setting options to pass
  to bosserver in /etc/default/openafs-fileserver.  (Closes: #409357)
* Remove the rx_Init calls in the PAM module.  The internal counters
  that had to be initialized that way have been removed.
* Now that we're running regen.sh as part of the build process, only
  patch the Autoconf source files and not the generated output to make
  the diff easier to audit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * osi_sysctl.c: Linux sysctl interface to OpenAFS
3
3
 *
4
 
 * $Id: osi_sysctl.c,v 1.7.2.3 2006/11/09 23:14:29 shadow Exp $
 
4
 * $Id: osi_sysctl.c,v 1.7.2.4 2007/02/22 21:49:01 shadow Exp $
5
5
 *
6
6
 * Written Jan 30, 2002 by Kris Van Hees (Sine Nomine Associates)
7
7
 */
62
62
int
63
63
osi_sysctl_init()
64
64
{
 
65
#if defined(REGISTER_SYSCTL_TABLE_NOFLAG)
 
66
    afs_sysctl = register_sysctl_table(fs_sysctl_table);
 
67
#else
65
68
    afs_sysctl = register_sysctl_table(fs_sysctl_table, 0);
 
69
#endif
66
70
    if (!afs_sysctl)
67
71
        return -1;
68
72