You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ma...@apache.org on 2008/05/23 08:46:33 UTC

svn commit: r659453 - /webservices/axis2/branches/c/post_1_4_mtom/c/axiom/src/attachments/mime_parser.c

Author: manjula
Date: Thu May 22 23:46:30 2008
New Revision: 659453

URL: http://svn.apache.org/viewvc?rev=659453&view=rev
Log:
Changing the file saving directory to /tmp/attachment.

Modified:
    webservices/axis2/branches/c/post_1_4_mtom/c/axiom/src/attachments/mime_parser.c

Modified: webservices/axis2/branches/c/post_1_4_mtom/c/axiom/src/attachments/mime_parser.c
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/c/post_1_4_mtom/c/axiom/src/attachments/mime_parser.c?rev=659453&r1=659452&r2=659453&view=diff
==============================================================================
--- webservices/axis2/branches/c/post_1_4_mtom/c/axiom/src/attachments/mime_parser.c (original)
+++ webservices/axis2/branches/c/post_1_4_mtom/c/axiom/src/attachments/mime_parser.c Thu May 22 23:46:30 2008
@@ -1506,7 +1506,7 @@
 void *init_handler()
 {
     FILE *fp = NULL;
-    fp = fopen("temp", "a+");
+    fp = fopen("/tmp/attachment", "a+");
     return (void *)fp;
 }