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

« back to all changes in this revision

Viewing changes to sbuild/sbuild-ctty.cc

  • Committer: Bazaar Package Importer
  • Author(s): Roger Leigh
  • Date: 2009-11-07 10:46:54 UTC
  • mfrom: (1.1.20 upstream) (2.1.6 experimental)
  • Revision ID: james.westby@ubuntu.com-20091107104654-kk1fp1icv8dzfyfi
* New upstream development release.
* schroot:
  - Return success when ending a session and the operation
    succeeded (Closes: #554907).

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
  }
122
122
 
123
123
  /// A streambuf for cctty.
124
 
#ifdef SCHROOT_FILEBUF_OLD
125
 
  __gnu_cxx::stdio_filebuf<char> cttybuf(cttybuf_fd(),
126
 
                                         std::ios::in|std::ios::out,
127
 
                                         true,
128
 
                                         BUFSIZ);
129
 
#else
130
124
  __gnu_cxx::stdio_filebuf<char> cttybuf(cttybuf_fd(),
131
125
                                         std::ios::in|std::ios::out);
132
 
#endif
133
126
 
134
127
}
135
128