Ignore:
Timestamp:
Jan 28, 2011, 7:26:41 AM (12 years ago)
Author:
Peter Johansson
Message:

avoid error message: Unknwon error 0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/0.9-stable/bin/Parameter.cc

    r1264 r1335  
    33/*
    44  Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson
    5   Copyright (C) 2009, 2010 Peter Johansson
     5  Copyright (C) 2009, 2010, 2011 Peter Johansson
    66
    77  This file is part of svndigest, http://dev.thep.lu.se/svndigest
     
    146146      if (S_ISDIR(buf.st_mode))
    147147        return;
     148      errno = ENOTDIR;
    148149    }
    149150    std::stringstream ss;
     151    assert(errno);
    150152    ss << cmd_.program_name() << ": '" << path << "': "
    151153       << strerror(errno);
Note: See TracChangeset for help on using the changeset viewer.