~ubuntu-branches/debian/sid/net-tools/sid

« back to all changes in this revision

Viewing changes to lib/ipx_sr.c

  • Committer: Package Import Robot
  • Author(s): Martín Ferrari
  • Date: 2015-09-07 01:54:07 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20150907015407-v2tfsgxayjd3iq4i
Tags: 1.60+git20150829.73cef8a-1
* After 14 years without an upstream release, I am producing a new package
  based on today's upstream repository.
  Closes: #391495, #486448, #323261, #260587, #545328, #511395.
* Remove many patches now merged upstream, delete unmaintainable and
  undocumented local changes, and update the rest.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * ipx_sr.c       This files contains IPX related route manipulation methods.
 
3
 *
 
4
 * Part of net-tools, the Linux base networking tools
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License.
 
9
 */
 
10
 
1
11
#include "config.h"
2
12
 
3
13
#if HAVE_AFIPX
31
41
{
32
42
 
33
43
    fprintf(stderr, _("IPX: this needs to be written\n"));
34
 
    return (0);
 
44
    return (E_NOSUPP);
35
45
}
36
46
#endif                          /* HAVE_AFIPX */