/mandos/release

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

« back to all changes in this revision

Viewing changes to plugins.d/askpass-fifo.c

  • Committer: Teddy Hogeborn
  • Date: 2011-03-08 19:41:59 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110308194159-h0p66a3rabn8cjkb
Tags: version-1.3.0-1
* Makefile (version): Changed to "1.3.0".
* NEWS (Version 1.3.0): New entry.
* debian/changelog (1.3.0-1): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
  ret = mkfifo(passfifo, S_IRUSR | S_IWUSR);
52
52
  if(ret == -1){
53
53
    int e = errno;
 
54
    error(0, errno, "mkfifo");
54
55
    switch(e){
55
56
    case EACCES:
56
57
    case ENOTDIR:
57
58
    case ELOOP:
58
 
      error(EX_OSFILE, errno, "mkfifo");
 
59
      return EX_OSFILE;
59
60
    case ENAMETOOLONG:
60
61
    case ENOSPC:
61
62
    case EROFS:
62
63
    default:
63
 
      error(EX_OSERR, errno, "mkfifo");
 
64
      return EX_OSERR;
64
65
    case ENOENT:
65
 
      /* no "/lib/cryptsetup"? */
66
 
      error(EX_UNAVAILABLE, errno, "mkfifo");
 
66
      return EX_UNAVAILABLE;    /* no "/lib/cryptsetup"? */
67
67
    case EEXIST:
68
68
      break;                    /* not an error */
69
69
    }