~ubuntu-branches/debian/jessie/nbd/jessie

« back to all changes in this revision

Viewing changes to nbd-debug.h

  • Committer: Package Import Robot
  • Author(s): Wouter Verhelst
  • Date: 2014-01-03 23:58:17 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20140103235817-41lx2367v9tisax9
Tags: 1:3.6-1
* New upstream release
  - Fixes parsing of authorization file; Closes: #676678, LP: #1009393.
* Install nbd-trdump into the nbd-server package, so people can
  actually see what the transaction file contains

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef NBD_DEBUG_H
 
2
#define NBD_DEBUG_H
 
3
#include <config.h>
 
4
/* Debugging macros */
 
5
#ifdef DODBG
 
6
#define DEBUG(...) printf(__VA_ARGS__)
 
7
#else
 
8
#define DEBUG(...)
 
9
#endif
 
10
#ifndef PACKAGE_VERSION
 
11
#define PACKAGE_VERSION ""
 
12
#endif
 
13
 
 
14
#endif