Searched defs:ctx2 (Results 1 - 1 of 1) sorted by relevance

/httpd/modules/dav/fs/
H A Drepos.c843 dav_resource_private *ctx2 = res2->info; local
848 if ((ctx1->finfo.filetype != APR_NOFILE) && (ctx2->finfo.filetype != APR_NOFILE)
849 && (ctx1->finfo.valid & ctx2->finfo.valid & APR_FINFO_INODE)) {
850 return ctx1->finfo.inode == ctx2->finfo.inode;
853 return strcmp(ctx1->pathname, ctx2->pathname) == 0;
862 dav_resource_private *ctx2 = res2->info; local
869 /* it is safe to use ctx2 now */
870 len2 = strlen(ctx2->pathname);
873 && memcmp(ctx1->pathname, ctx2->pathname, len1) == 0
874 && ctx2
[all...]

Completed in 14 milliseconds