Changeset 161
- Timestamp:
- Jan 23, 2008, 7:16:05 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.in
r149 r161 1105 1105 # rm x_`echo $< |sed 's%.*/%%'` 1106 1106 1107 $(OBJECTS): 1107 $(OBJECTS): encode 1108 1108 @echo "./encode $(XOR_CODE) $(srcsrc)/`echo $@ |sed 's%\.o$$%%'`.c --> x_`echo $@ |sed 's%\.o$$%%'`.c"; \ 1109 1109 ./encode $(XOR_CODE) $(srcsrc)/`echo $@ |sed 's%\.o$$%%'`.c; \ -
trunk/docs/Changelog
r160 r161 1 2.4.3: 2 * Makefile.in: fix missing dependency on 'encode' for $(OBJECTS) 3 (reported by Matthias Ehrmann) 4 1 5 2.4.2: 2 6 * fix broken option --with-checksum (reported by halosfan), -
trunk/docs/HOWTO-write-modules.html
r1 r161 662 662 When checking files, samhain will walk the database to find files that 663 663 are in the database, but have been deleted from the disk. If you enter 664 non-file data, you need to mark it as such by using a key that 665 starts with a 'K'. 664 data, you need to mark it as such by using a key that 665 starts with something else but '/', otherwise samhain will complain 666 if it has not been checked during the file check. 666 667 </p> 667 668 <pre> … … 682 683 (max. (PATH_MAX-1)/2). As noted 683 684 above, you need to supply a key (stored as the 'filepath', which should 684 start with the character 'K'). To retrieve data, you can use685 start with a character different from '/'). To retrieve data, you can use 685 686 'sh_hash_db2pop'. The return value is either NULL (if no string was 686 687 stored under this key), or the stored string (length returned in 'size'). -
trunk/src/sh_getopt.c
r76 r161 521 521 fprintf (stdout, 522 522 _("This is samhain (%s), "\ 523 "(c) 1999-200 6Rainer Wichmann (http://la-samhna.de).\n"),523 "(c) 1999-2008 Rainer Wichmann (http://la-samhna.de).\n"), 524 524 VERSION); 525 525 fprintf (stdout, _("This software comes with ABSOLUTELY NO WARRANTY. ")); … … 537 537 { 538 538 fprintf (stdout, 539 _("Copyright (C) 1999-200 6Rainer Wichmann"\539 _("Copyright (C) 1999-2008 Rainer Wichmann"\ 540 540 " (http://la-samhna.de).\n\n")); 541 541 -
trunk/src/sh_tools.c
r143 r161 588 588 else 589 589 sl_strlcpy(ecall, _("strlen"), SH_MINIBUF); 590 sl_strlcpy(errmsg, _("Reverse lookup failed ."),590 sl_strlcpy(errmsg, _("Reverse lookup failed: "), 591 591 errsiz); 592 592 sl_strlcat(errmsg, address, errsiz);
Note:
See TracChangeset
for help on using the changeset viewer.