#ifndef lint
static char copyright[] =
-"$Id: print.c,v 1.42 2000/03/17 03:59:01 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
+"$Id: print.c,v 1.43 2000/08/30 18:03:00 neild Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */
#include "dhcpd.h"
case expr_remainder:
s = "%";
goto binop;
+
+ case expr_binary_and:
+ s = "&";
+ goto binop;
+
+ case expr_binary_or:
+ s = "|";
+ goto binop;
+
+ case expr_binary_xor:
+ s = "^";
+ goto binop;
case expr_not:
if (len > 6) {