~ubuntu-branches/ubuntu/trusty/nordugrid-arc/trusty-proposed

« back to all changes in this revision

Viewing changes to src/hed/shc/legacy/auth_file.cpp

  • Committer: Package Import Robot
  • Author(s): Mattias Ellert
  • Date: 2013-05-08 13:48:03 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20130508134803-mrhc5w4d5y7ubyj4
Tags: 3.0.1-1
3.0.1 Release

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
      logger.msg(Arc::ERROR, "Failed to read file %s", *s);
25
25
      return AAA_FAILURE;
26
26
    };
27
 
    for(;!f.eof();) {
 
27
    for(;f.good();) {
28
28
      std::string buf;
29
29
      getline(f,buf);
30
30
      int res = evaluate(buf.c_str());