Commit 5e248710 authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Clipboard.c: TIMESTAMP is a special server target

This is not a functional change, it only helps in clearer debugging output.
parent f99f5277
...@@ -458,6 +458,13 @@ Bool nxagentValidServerTargets(Atom target) ...@@ -458,6 +458,13 @@ Bool nxagentValidServerTargets(Atom target)
#endif #endif
return False; return False;
} }
else if (target == serverTIMESTAMP)
{
#ifdef DEBUG
fprintf(stderr, "%s: special target [TIMESTAMP].\n", __func__);
#endif
return False;
}
#ifdef DEBUG #ifdef DEBUG
fprintf(stderr, "%s: invalid target [%u].\n", __func__, target); fprintf(stderr, "%s: invalid target [%u].\n", __func__, target);
......
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