Changeset 893
- Timestamp:
- 04/26/2005 11:00:32 PM (4 years ago)
- Location:
- cforum/branches/3.3
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
src/modules/flt_xmlstorage.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cforum/branches/3.3/ChangeLog
r891 r893 1 1 2005-04-26 Christian Kruse <ckruse@wwwtech.de> 2 * src/fo_post.c: Fixed #787 3 * src/defines.h: Changed CF_BUFSIZ to BUFSIZ (#define CF_BUFSIZ BUFSIZ), 4 changed version number 2 * src/modules/flt_xmlstorage.c: Fixed a _very_ nasty and bad bug in the 3 archiving functions 5 4 6 2005-04-24 Christian Seiler <self@christian-seiler.de>7 * src/parsetpl/parsetpl.lex: Added {iws} and {endiws} tags.8 -
cforum/branches/3.3/src/modules/flt_xmlstorage.c
r856 r893 1056 1056 1057 1057 if(stat(str.content,&st) == -1) { 1058 if(cf_make_path( buff,0755) != 0) {1058 if(cf_make_path(str.content,0755) != 0) { 1059 1059 cf_log(CF_ERR|CF_FLSH,__FILE__,__LINE__,"Error creating path %s! (%s)\n",buff,strerror(errno)); 1060 1060 exit(-1); … … 1075 1075 1076 1076 olen = str.len; 1077 str_char _append(&str,'/');1078 u_int 16_to_str(&str,(u_int16_t)(t.tm_mon+1));1077 str_chars_append(&str,"/t",2); 1078 u_int64_to_str(&str,threads[i]->tid); 1079 1079 str_chars_append(&str,".xml",4); 1080 1080
