Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
security:tls:staging
vsftpd
vsftpd-append-seek-pipe.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File vsftpd-append-seek-pipe.patch of Package vsftpd
Index: vsftpd-3.0.2/sysutil.c =================================================================== --- vsftpd-3.0.2.orig/sysutil.c +++ vsftpd-3.0.2/sysutil.c @@ -490,7 +490,8 @@ vsf_sysutil_lseek_end(const int fd) { filesize_t retval; retval = lseek(fd, 0, SEEK_END); - if (retval < 0) + /* Ignore ESPIPE to allow append to fifos */ + if (retval < 0 && errno != ESPIPE) { die("lseek"); }
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor