Commit 1d5e5f05 authored by Federico G. Schwindt's avatar Federico G. Schwindt

Handle OBJ_STICKY in flags

parent f2de8e9d
...@@ -575,6 +575,10 @@ MCF_DumpRstParam(void) ...@@ -575,6 +575,10 @@ MCF_DumpRstParam(void)
printf("%sonly_root", q); printf("%sonly_root", q);
q = ", "; q = ", ";
} }
if (pp->flags & OBJ_STICKY) {
printf("%sobj_sticky", q);
q = ", ";
}
printf("\n"); printf("\n");
} }
printf("\n"); printf("\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment