Changeset 248 for trunk/src/sh_hash.c


Ignore:
Timestamp:
Sep 21, 2009, 8:23:56 PM (15 years ago)
Author:
katerina
Message:

Code to track down originating site for ticket #163.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_hash.c

    r247 r248  
    11911191    if (fd == (-1))
    11921192      {
    1193         if ( SL_ISERROR(fd = sl_open_read(file_path('D', 'R'), SL_YESPRIV)))
     1193        if ( SL_ISERROR(fd = sl_open_read(FIL__, __LINE__,
     1194                                          file_path('D', 'R'), SL_YESPRIV)))
    11941195          {
    11951196            TPT(( 0, FIL__, __LINE__, _("msg=<Error opening: %s>\n"),
     
    15481549      if (pushdata_stdout == S_FALSE && pushdata_fd == -1)
    15491550        {
    1550           if ( SL_ISERROR(pushdata_fd = sl_open_write(file_path('D', 'W'), SL_YESPRIV)))
     1551          if ( SL_ISERROR(pushdata_fd = sl_open_write(FIL__, __LINE__,
     1552                                                      file_path('D', 'W'),
     1553                                                      SL_YESPRIV)))
    15511554            {
    15521555              SH_FREE(fullpath);
     
    15721575              SH_FREE(linkpath);
    15731576              sh_error_handle((-1), FIL__, __LINE__, status, MSG_E_SUBGPATH,
    1574                               _("Failed to seek to end of baseline database"), _("sh_hash_pushdata_int"),
     1577                              _("Failed to seek to end of baseline database"),
     1578                              _("sh_hash_pushdata_int"),
    15751579                              file_path('D', 'W'));
    15761580              aud_exit(FIL__, __LINE__, EXIT_FAILURE);
     
    15831587        {
    15841588          TPT((0, FIL__, __LINE__, _("msg=<Update.>\n")))
    1585             if ( SL_ISERROR(pushdata_fd = sl_open_rdwr(file_path('D', 'W'), SL_YESPRIV))){
     1589            if ( SL_ISERROR(pushdata_fd = sl_open_rdwr(FIL__, __LINE__,
     1590                                                       file_path('D', 'W'),
     1591                                                       SL_YESPRIV))){
    15861592              SH_FREE(fullpath);
    15871593              SH_FREE(linkpath);
     
    40324038  line = SH_ALLOC(MAX_PATH_STORE+2);
    40334039
    4034   if ( SL_ISERROR(fd = sl_open_read(db_file, SL_YESPRIV)))
     4040  if ( SL_ISERROR(fd = sl_open_read(FIL__, __LINE__, db_file, SL_YESPRIV)))
    40354041    {
    40364042      fprintf(stderr, _("ERROR: can't open %s for read (errnum = %ld)\n"),
Note: See TracChangeset for help on using the changeset viewer.