> From: Sheldon Gill [mailto:[EMAIL PROTECTED]
> 
> In GSHTTPUrlHandle.m, + initialise:
> 
>       sprintf(debugFile, "/tmp/GSHTTP.%d",
>       [[NSProcessInfo processInfo] processIdentifier]);
> 
> assumes "/tmp".  Code should call NSTemporaryDirectory() to 
> establish the path 
> and append "GSHTTP.%d" for the file name.
> 
> Off the top of my head:
> 
> sprintf(debugFile, [[NSString stringWithFormat: 
> @"%@/GSHTTP.%d" arguments:
> [NSTemporaryDirectory() objectAtIndex: 0] [[NSProcessInfo 
> processInfo] 
> processIdentifier] nil] cString]);
> 


I fixed this.


_______________________________________________
Bug-gnustep mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-gnustep

Reply via email to