Removed #ifdef for printing tunnel attribute tags in the Merit
authorcparker <cparker>
Thu, 8 Nov 2001 01:04:33 +0000 (01:04 +0000)
committercparker <cparker>
Thu, 8 Nov 2001 01:04:33 +0000 (01:04 +0000)
format, because we don't want to do that.  Ever.  :)

src/lib/print.c

index dfa2c04..9218615 100644 (file)
@@ -199,11 +199,7 @@ int vp_prints(char *out, int outlen, VALUE_PAIR *vp)
 
        if( vp->flags.has_tag ) {
 
-#ifdef MERIT_STYLE_TAGS
-               snprintf(out, outlen, "%s = :%d:", vp->name, vp->flags.tag);
-#else
                snprintf(out, outlen, "%s:%d = ", vp->name, vp->flags.tag);
-#endif
                
                len = strlen(out);
                vp_prints_value(out + len, outlen - len, vp, 1);