Provide a `--pidfile' option in `fw'.
[fwd] / fattr.c
diff --git a/fattr.c b/fattr.c
index 75491a6..b27e9b8 100644 (file)
--- a/fattr.c
+++ b/fattr.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: fattr.c,v 1.2 1999/08/19 18:32:48 mdw Exp $
+ * $Id: fattr.c,v 1.4 2004/04/08 01:36:25 mdw Exp $
  *
  * Handling of file attributes
  *
  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------* 
- *
- * $Log: fattr.c,v $
- * Revision 1.2  1999/08/19 18:32:48  mdw
- * Improve lexical analysis.  In particular, `chmod' patterns don't have to
- * be quoted any more.
- *
- * Revision 1.1  1999/07/26 23:33:56  mdw
- * Support code for new design.
- *
- */
-
 /*----- Header files ------------------------------------------------------*/
 
 #include "config.h"
@@ -104,14 +92,14 @@ int fattr_option(scanner *sc, fattr *f)
 
     /* --- Gobble an optional `=' sign --- */
 
-    undelim(0, ",=+-");
+    conf_undelim(sc, 0, ",=+-");
     token(sc);
     if (sc->t == '=')
       token(sc);
 
     if (sc->t != CTOK_WORD)
       error(sc, "parse error, expected file mode");
-    undelim(0, 0);
+    conf_undelim(sc, 0, 0);
 
     /* --- If it looks digitlike, read as octal --- */