/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/usplash.c

  • Committer: Teddy Hogeborn
  • Date: 2009-01-10 06:23:04 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090110062304-wy7yw1pyuu5cldrg
* plugins.d/splashy.c (main): Do not abort if a process vanishes while
                              investigating it.
* plugins.d/usplash.c (main): - '' -  Also removed unnecessary code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
193
193
        struct stat exe_stat;
194
194
        ret = lstat(exe_link, &exe_stat);
195
195
        if(ret == -1){
 
196
          if(errno == ENOENT){
 
197
            free(exe_link);
 
198
            continue;
 
199
          }
196
200
          perror("lstat");
197
201
          free(exe_link);
198
202
          free(prompt);
208
212
        
209
213
        sret = readlink(exe_link, exe_target, sizeof(exe_target));
210
214
        free(exe_link);
211
 
        if(sret == -1){
212
 
          continue;
213
 
        }
214
215
      }
215
216
      if((sret == ((ssize_t)sizeof(exe_target)-1))
216
217
         and (memcmp(usplash_name, exe_target,