Skip to content

Commit

Permalink
Fix DPRINT in ipropd_svc.c
Browse files Browse the repository at this point in the history
cea0b28 contained an incorrect
definition of DPRINT.  Fix it.

[ghudson@mit.edu: commit message]

(cherry picked from commit 02de981)

ticket: 7525
version_fixed: 1.11.1
status: resolved
  • Loading branch information
guillomovitch authored and tlyu committed Jan 31, 2013
1 parent f19ba6a commit b9d5299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kadmin/server/ipropd_svc.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static char *reply_unknown_str = "<UNKNOWN_CODE>";
#ifdef DPRINT
#undef DPRINT
#endif
#define DPRINT(i, ...) \
#define DPRINT(...) \
do { \
if (nofork) { \
fprintf(stderr, __VA_ARGS__); \
Expand Down

0 comments on commit b9d5299

Please sign in to comment.