X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/863e75ffb7d4b4f4a73d11d489e47eab1d52c6f2..16efd15b675c87d22a4fd9fb12d7bb26f2a36031:/passphrase.c diff --git a/passphrase.c b/passphrase.c index e19aed4..b0268d3 100644 --- a/passphrase.c +++ b/passphrase.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: passphrase.c,v 1.2 2000/06/17 11:49:37 mdw Exp $ + * $Id: passphrase.c,v 1.3 2000/12/06 20:33:27 mdw Exp $ * * Reading of passphrases (Unix-specific) * @@ -30,6 +30,10 @@ /*----- Revision history --------------------------------------------------* * * $Log: passphrase.c,v $ + * Revision 1.3 2000/12/06 20:33:27 mdw + * Make flags be macros rather than enumerations, to ensure that they're + * unsigned. + * * Revision 1.2 2000/06/17 11:49:37 mdw * New pixie protocol allowing application to request passphrases and send * them to the pixie. @@ -58,9 +62,7 @@ static int fd = -1; static unsigned flags = 0; -enum { - f_fail = 1 -}; +#define f_fail 1u /*----- Main code ---------------------------------------------------------*/