util  Diff

Differences From Artifact [bc7c445885]:

To Artifact [7b2d881529]:


   397    397   	{ nkvd_intcall(libc_eaccess,path,mode); }
   398    398   
   399    399   #define max(a,b) ((a) > (b) ? (a) : (b))
   400    400   int rename(const char* volatile from,
   401    401              const char* volatile to) {
   402    402   	if (intercept) {
   403    403   		const size_t fromlen = strlen(from),
   404         -		               tolen = strlen(from);
          404  +		               tolen = strlen(to);
   405    405   		char fromgulag[redir_len + tolen  ],
   406    406   		       togulag[redir_len + fromlen];
   407    407   
   408    408   		const char* fromfinal,
   409    409   		          * tofinal;
   410    410   
   411    411   		if (interrogate(from, fromlen, fromgulag))