[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

I installed a package! woo-hoo!



Well, all the parts have worked at different times, but finally I have
actually updated, marked packages for install, spawned dpkg in a modal
terminal window, successfully completed, reopened the cache and updated
the display. So that kicks much ass. 

In other news, GNOME went into freeze today and Jim Pick will be packaging
soon. You can expect gnome-apt to build with these packages when they come
out. 

Bug report: apparently it's possible that Stop < Start in the code below,
which causes bad things to happen. I haven't figured out yet exactly 
what causes it, no time tonight.


/*}}}*/
// RecordParser::FindTag - Locate a tag and return a string
/*{{{*/
// ---------------------------------------------------------------------
/* */
string debRecordParser::FindTag(const char *Tag)
{
   const char *Start;
   const char *Stop;
   if (Section.Find(Tag,Start,Stop) == false)
      return string();

   if (Stop == Start) cerr << "Oops! (equal)" << endl;
   if (Stop < Start) cerr << "Oops! (less)" << endl;

   return string(Start,Stop - Start);
}





Reply to: