~ubuntu-branches/ubuntu/trusty/schroot/trusty

« back to all changes in this revision

Viewing changes to bin/dchroot/dchroot-main.cc

  • Committer: Bazaar Package Importer
  • Author(s): Roger Leigh
  • Date: 2010-10-03 11:57:08 UTC
  • mfrom: (1.1.25 upstream) (2.2.16 sid)
  • Revision ID: james.westby@ubuntu.com-20101003115708-jy1htehs3nsj8u68
* New upstream stable release.
* Updated translations:
  - vi (Closes: #598353).  Thanks to Clytie Siddall.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
    {
70
70
      this->config = sbuild::chroot_config::ptr(new dchroot::chroot_config);
71
71
      if (this->options->load_chroots == true)
72
 
        this->config->add(DCHROOT_CONF, false);
 
72
        this->config->add("chroot", DCHROOT_CONF);
73
73
    }
74
74
  else
75
75
    {
86
86
  // not require user or group access.
87
87
  this->session = sbuild::session::ptr
88
88
    (new dchroot::session("schroot",
89
 
                          this->config,
90
89
                          sess_op,
91
 
                          this->chroots,
 
90
                          this->chroot_objects,
92
91
                          this->use_dchroot_conf));
93
92
}