Differences From Artifact [2a0fed7af2]:
- File src/zip.c — part of check-in [f6daee3e7b] at 2011-08-25 11:42:11 on branch symlinks — Introduce constants for internal permissions (executable/symlink). (user: dmitry size: 11927) [more...]
To Artifact [a6b415696a]:
- File src/zip.c — part of check-in [8a0c546990] at 2011-09-08 11:59:42 on branch symlinks — Introduce new file_wd_* functions that use stat() or lstat() depending on 'allow-symlinks' setting, and use them when dealing with files inside the working directory. Make file_* functions always use stat() as before merging symlink support. Fix renaming of symlinks when merging (via new function symlink_copy()). Rename create_symlink() to symlink_create(). (user: dmitry size: 11930) [more...]
| ︙ | |||
289 290 291 292 293 294 295 | 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | - + |
if( g.argc<3 ){
usage("ARCHIVE FILE....");
}
zip_open();
for(i=3; i<g.argc; i++){
blob_zero(&file);
blob_read_from_file(&file, g.argv[i]);
|
| ︙ |