Changeset bbee2910ceb0db789bc9cbfa425acaf3bdb6b243

Show
Ignore:
Timestamp:
10/31/10 02:13:23 (3 years ago)
Author:
Nedko Arnaudov <nedko@…>
Children:
9592afef259d459d8d22bdfa78ee4869146af8f0
Parents:
7d2ebaa433535916e1c8ea1c444d83ca1ce1be50
git-committer:
Nedko Arnaudov <nedko@arnaudov.name> / 2010-10-31T02:13:23Z+0300
Message:

alsapid: replace stale symlinks

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • alsapid/lib.c

    r683b8f4 rbbee291  
    4848 
    4949  //printf("'%s' -> '%s'\n", src, dst); 
     50  if (unlink(src) != 0 && errno != ENOENT) 
     51  { 
     52    fprintf(stderr, "unlink(\"%s\") failed with %d (%s)", src, errno, strerror(errno)); 
     53  } 
    5054  if (symlink(dst, src) != 0) 
    5155  {