~ubuntu-branches/ubuntu/hardy/tcp-wrappers/hardy

« back to all changes in this revision

Viewing changes to fix_options.c

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Towns
  • Date: 2001-11-18 00:24:50 UTC
  • Revision ID: james.westby@ubuntu.com-20011118002450-pm5krob0tl14uxgf
Tags: 7.6-9
* Include changes from NMUs, fixing C++ compilation. Thanks to Matthew
  Wilcox and Ryan Murray. (Closes: Bug#100891, Bug#105874)

* Fix paths in man pages. (Closes: Bug#44575, Bug#110890)
* Make symlinks for manpages as well as having multiple entries in the NAME
  section. (Closes: Bug#99581)

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#ifdef IP_OPTIONS
36
36
    unsigned char optbuf[BUFFER_SIZE / 3], *cp;
37
37
    char    lbuf[BUFFER_SIZE], *lp;
 
38
#if !defined(__GLIBC__)
38
39
    int     optsize = sizeof(optbuf), ipproto;
 
40
#else /* __GLIBC__ */
 
41
    size_t  optsize = sizeof(optbuf);
 
42
    int     ipproto;
 
43
#endif /* __GLIBC__ */
39
44
    struct protoent *ip;
40
45
    int     fd = request->fd;
41
46
    unsigned int opt;