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

« back to all changes in this revision

Viewing changes to scaffold.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:
180
180
 
181
181
/* ARGSUSED */
182
182
 
183
 
void    rfc931(request)
184
 
struct request_info *request;
 
183
void    rfc931(rmt_sin, our_sin, dest)
 
184
struct sockaddr_in *rmt_sin;
 
185
struct sockaddr_in *our_sin;
 
186
char   *dest;
185
187
{
186
 
    strcpy(request->user, unknown);
 
188
    strcpy(dest, unknown);
187
189
}
188
190
 
189
191
/* check_path - examine accessibility */