Changeset 161


Ignore:
Timestamp:
Jan 23, 2008, 7:16:05 PM (17 years ago)
Author:
katerina
Message:

Fix for ticket #88 (parallel build fails). Also fixed a few typos.

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile.in

    r149 r161  
    11051105#       rm x_`echo $< |sed 's%.*/%%'`
    11061106
    1107 $(OBJECTS):
     1107$(OBJECTS): encode
    11081108        @echo "./encode $(XOR_CODE) $(srcsrc)/`echo $@ |sed 's%\.o$$%%'`.c --> x_`echo $@ |sed 's%\.o$$%%'`.c"; \
    11091109        ./encode $(XOR_CODE) $(srcsrc)/`echo $@ |sed 's%\.o$$%%'`.c; \
  • trunk/docs/Changelog

    r160 r161  
     12.4.3:
     2        * Makefile.in: fix missing dependency on 'encode' for $(OBJECTS)
     3          (reported by Matthias Ehrmann)
     4
    152.4.2:
    26        * fix broken option --with-checksum (reported by halosfan),
  • trunk/docs/HOWTO-write-modules.html

    r1 r161  
    662662When checking files, samhain will walk the database to find files that
    663663are 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'.
     664data, you need to mark it as such by using a key that
     665starts with something else but '/', otherwise samhain will complain
     666if it has not been checked during the file check.
    666667</p>
    667668<pre>
     
    682683(max. (PATH_MAX-1)/2). As noted
    683684above, you need to supply a key (stored as the 'filepath', which should
    684 start with the character 'K'). To retrieve data, you can use
     685start with a character different from '/'). To retrieve data, you can use
    685686'sh_hash_db2pop'. The return value is either NULL (if no string was
    686687stored under this key), or the stored string (length returned in 'size').
  • trunk/src/sh_getopt.c

    r76 r161  
    521521  fprintf (stdout,
    522522           _("This is samhain (%s), "\
    523              "(c) 1999-2006 Rainer Wichmann (http://la-samhna.de).\n"),
     523             "(c) 1999-2008 Rainer Wichmann (http://la-samhna.de).\n"),
    524524           VERSION);
    525525  fprintf (stdout, _("This software comes with ABSOLUTELY NO WARRANTY. "));
     
    537537{
    538538  fprintf (stdout,
    539            _("Copyright (C) 1999-2006 Rainer Wichmann"\
     539           _("Copyright (C) 1999-2008 Rainer Wichmann"\
    540540             " (http://la-samhna.de).\n\n"));
    541541
  • trunk/src/sh_tools.c

    r143 r161  
    588588                          else
    589589                            sl_strlcpy(ecall, _("strlen"), SH_MINIBUF);
    590                           sl_strlcpy(errmsg, _("Reverse lookup failed."),
     590                          sl_strlcpy(errmsg, _("Reverse lookup failed: "),
    591591                                     errsiz);
    592592                          sl_strlcat(errmsg, address, errsiz);
Note: See TracChangeset for help on using the changeset viewer.