summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'segget/segment.cpp')
-rw-r--r--segget/segment.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/segget/segment.cpp b/segget/segment.cpp
index cc4e2f2..b771948 100644
--- a/segget/segment.cpp
+++ b/segget/segment.cpp
@@ -109,7 +109,7 @@ uint Tsegment::add_easy_handle_to_multi(CURLM *cm, uint network_num){
try{
segment_file.exceptions (ofstream::badbit);
segment_file.open((settings.segments_dir+"/"+file_name).c_str(), ios::trunc|ios::binary );
- if (segment_file==0){
+ if (! segment_file.is_open()){
error_log("Can't open for writing segment file "+settings.segments_dir+"/"+file_name);
error_log("....Check if folder "+settings.segments_dir+" exists and seggetd has permisions to write into it");
return ERROR_WHILE_OPENING_SEGMENT_FOR_WRITING;