- Timestamp:
- Nov 16, 2012, 7:51:35 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r418 r419 2 2 * Fix the RPM spec file for --enable-network=client and no password 3 3 (reported by Mitch St Martin) 4 * Fix build error with Linux audit (reported by Andy Jack) 4 5 5 6 3.0.8: -
trunk/src/sh_audit.c
r415 r419 278 278 { 279 279 struct aud_list * this = SH_ALLOC(sizeof(struct aud_list)); 280 this->file = sh_util s_strdup(file);280 this->file = sh_util_strdup(file); 281 281 this->next = mark_these; 282 282 return; … … 312 312 { 313 313 SH_FREE(this->file); 314 this->file = sh_util s_strdup(file);314 this->file = sh_util_strdup(file); 315 315 ret = 0; 316 316 } … … 325 325 void sh_audit_mark (char * file) 326 326 { 327 struct aud_list * all = mark_these;328 327 struct aud_list * this = mark_these; 329 328
Note:
See TracChangeset
for help on using the changeset viewer.