~ubuntu-branches/ubuntu/gutsy/ntp/gutsy

« back to all changes in this revision

Viewing changes to ntpd/ntpsim.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-05-18 22:41:56 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070518224156-563ruqxsxvqvoy8h
Tags: 1:4.2.4p0+dfsg-1ubuntu1
* Merge from Debian unstable.
* Remaining Ubuntu changes:
  - Update version in conflicts/replaces to that which was shipped in edgy,
    which was later than that in Debian (due to the ubuntuX).
  - Change default server to ntp.ubuntu.com.
  - Remove stop links from rc0 and rc6
  - Call dh_installinit with --error-handler
  - Set Ubuntu maintainer address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 */
5
5
#include "ntpd.h"
6
6
#include "ntpsim.h"
 
7
#include "ntpdsim-opts.h"
7
8
 
8
9
/*
9
10
 * Defines...
72
73
        init_io();
73
74
        init_loopfilter();
74
75
        mon_start(MON_OFF);
 
76
 
 
77
        {
 
78
                int optct = optionProcess(&ntpdsimOptions, argc, argv);
 
79
                argc -= optct;
 
80
                argv += optct;
 
81
        }
 
82
 
75
83
        getconfig(argc, argv);
 
84
 
76
85
        initializing = 0;
77
86
        loop_config(LOOP_DRIFTCOMP, old_drift / 1e6);
78
87