Remove ##.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@3097 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-08-24 05:37:19 +00:00
parent 96f3e1c59d
commit 7587513741

View File

@@ -116,7 +116,7 @@ print_cred_verbose(krb5_context context, krb5_creds *cred)
printf("Renew till: %s\n",
printable_time(cred->times.renew_till));
printf("Ticket flags: ");
#define PRINT_FLAG2(f, s) if(cred->flags.b. ##f) { if(!first_flag) printf(", "); printf("%s", #s); first_flag = 0; }
#define PRINT_FLAG2(f, s) if(cred->flags.b.f) { if(!first_flag) printf(", "); printf("%s", #s); first_flag = 0; }
#define PRINT_FLAG(f) PRINT_FLAG2(f, f)
first_flag = 1;
PRINT_FLAG(forwardable);