- aggiornamento alla versione 1.10.0.
This commit is contained in:
SaraP
2023-08-21 10:45:39 +02:00
parent a4464d8c81
commit 05835774df
136 changed files with 1882 additions and 618 deletions
+3 -2
View File
@@ -1,9 +1,9 @@
/*
zip_source_function.c -- create zip data source from callback function
Copyright (C) 1999-2021 Dieter Baron and Thomas Klausner
Copyright (C) 1999-2022 Dieter Baron and Thomas Klausner
This file is part of libzip, a library to manipulate ZIP archives.
The authors can be contacted at <libzip@nih.at>
The authors can be contacted at <info@libzip.org>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
@@ -61,6 +61,7 @@ zip_source_function_create(zip_source_callback zcb, void *ud, zip_error_t *error
if (zs->supports < 0) {
zs->supports = ZIP_SOURCE_SUPPORTS_READABLE;
}
zs->supports |= zip_source_make_command_bitmap(ZIP_SOURCE_SUPPORTS, -1);
return zs;
}