Replace empty strings with dash when logging

pull/13/head
Daniel Roethlisberger 12 years ago
parent 07d591fccf
commit 9f40fbc473

@ -67,7 +67,7 @@
/*
* Print helper for logging code.
*/
#define STRORDASH(x) ((x)?(x):"-")
#define STRORDASH(x) (((x)&&*(x))?(x):"-")
/*
* Context used for all server sessions.

Loading…
Cancel
Save