# HG changeset patch # User jwe # Date 949556922 0 # Node ID 9c7e782471d05fdc8bcba592098e727953d6a36a # Parent 0345dd2a826f06e498cfa218b72251b1e3f22ea9 [project @ 2000-02-03 05:48:42 by jwe] diff --git a/src/procstream.cc b/src/procstream.cc --- a/src/procstream.cc +++ b/src/procstream.cc @@ -35,7 +35,7 @@ pb_init (); if (! pb.open (command, mode)) - set (std::ios::badbit); + std::set (std::ios::badbit); } void @@ -44,7 +44,7 @@ clear (); if (! pb.open (command, mode)) - set (std::ios::badbit); + std::set (std::ios::badbit); } int @@ -55,7 +55,7 @@ if (is_open ()) { if (! pb.close ()) - set (std::ios::failbit); + std::set (std::ios::failbit); status = pb.wait_status (); }