Patch single-define-of-FUSE_EDEADLK for fuse Bug #65908
Patch version 2013-10-16 01:41 UTC
Return to Bug #65908 |
Download this patch
Patch Revisions:
Developer: bugs13.wiseowldp@recursor.net
Index: fuse.c
===================================================================
--- fuse.c (revision 331851)
+++ fuse.c (working copy)
@@ -527,7 +527,6 @@
zend_register_long_constant(ZEND_STRS("FUSE_EROFS"), EROFS, CONST_CS, module_number TSRMLS_CC);
zend_register_long_constant(ZEND_STRS("FUSE_EMLINK"), EMLINK, CONST_CS, module_number TSRMLS_CC);
zend_register_long_constant(ZEND_STRS("FUSE_EPIPE"), EPIPE, CONST_CS, module_number TSRMLS_CC);
- zend_register_long_constant(ZEND_STRS("FUSE_EDEADLK"), EDEADLK, CONST_CS, module_number TSRMLS_CC);
zend_register_long_constant(ZEND_STRS("FUSE_ENAMETOOLONG"), ENAMETOOLONG, CONST_CS, module_number TSRMLS_CC);
zend_register_long_constant(ZEND_STRS("FUSE_ENOLCK"), ENOLCK, CONST_CS, module_number TSRMLS_CC);
zend_register_long_constant(ZEND_STRS("FUSE_ENOSYS"), ENOSYS, CONST_CS, module_number TSRMLS_CC);
|