Changeset 46528c887469267ea644558a28451b9b882e102e
- Timestamp:
- 11/18/10 00:48:27 (3 years ago)
- Author:
- Nedko Arnaudov <nedko@…>
- Children:
- fb15df6218dc5b759e5ba614d8413f1d1cda2d30
- Parents:
- 6c4e75c400041e5cad23ce4b8d32ce36ba9d2561
- git-author:
- Nedko Arnaudov <nedko@arnaudov.name> / 2010-11-18T00:45:39Z+0200
- git-committer:
- Nedko Arnaudov <nedko@arnaudov.name> / 2010-11-18T00:48:27Z+0200
- Message:
-
ladishd: dont log error when the recent store does not exist
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r78e99c4
|
r46528c8
|
|
| 89 | 89 | if (fd == -1) |
| 90 | 90 | { |
| 91 | | log_error("open(%s) failed: %d (%s)", store_ptr->path, errno, strerror(errno)); |
| | 91 | if (errno != ENOENT) |
| | 92 | { |
| | 93 | log_error("open(%s) failed: %d (%s)", store_ptr->path, errno, strerror(errno)); |
| | 94 | } |
| | 95 | |
| 92 | 96 | goto exit; |
| 93 | 97 | } |