~ubuntu-branches/debian/jessie/ppp/jessie

« back to all changes in this revision

Viewing changes to pppd/options.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Beattie
  • Date: 2001-12-11 00:24:05 UTC
  • Revision ID: james.westby@ubuntu.com-20011211002405-gcsjlgalwyjf99m2
Tags: 2.4.1.uus-4
Use MAKEDEV in postinst, not mknod. (Closes: #122574)

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
bool    dump_options;           /* print out option values */
86
86
bool    dryrun;                 /* print out option values and exit */
87
87
char    *domain;                /* domain name set by domain option */
 
88
char    path_ipup[MAXPATHLEN];  /* pathname of ip-up script */
 
89
char    path_ipdown[MAXPATHLEN];/* pathname of ip-down script */
88
90
 
89
91
extern option_t auth_options[];
90
92
extern struct stat devstat;
231
233
      "Print out option values after parsing all options", 1 },
232
234
    { "dryrun", o_bool, &dryrun,
233
235
      "Stop after parsing, printing, and checking options", 1 },
 
236
    { "ip-up-script", o_string, path_ipup,
 
237
      "Set pathname of ip-up script",
 
238
      OPT_PRIV|OPT_STATIC, NULL, MAXPATHLEN },
 
239
    { "ip-down-script", o_string, path_ipdown,
 
240
      "Set pathname of ip-down script",
 
241
      OPT_PRIV|OPT_STATIC, NULL, MAXPATHLEN },
234
242
 
235
243
#ifdef HAVE_MULTILINK
236
244
    { "multilink", o_bool, &multilink,