diff options
Diffstat (limited to 'xlators/debug')
-rw-r--r-- | xlators/debug/io-stats/src/io-stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/debug/io-stats/src/io-stats.c b/xlators/debug/io-stats/src/io-stats.c index eb604ea929b..79e97786581 100644 --- a/xlators/debug/io-stats/src/io-stats.c +++ b/xlators/debug/io-stats/src/io-stats.c @@ -1017,7 +1017,7 @@ _io_stats_write_latency_sample (xlator_t *this, ios_sample_t *sample, epoch_time = (sample->timestamp).tv_sec + ((sample->timestamp).tv_usec / 1000000.0); - if (!sample->identifier || (strlen (sample->identifier) == 0)) { + if (strlen (sample->identifier) == 0) { hostname = "Unknown"; port = "Unknown"; } else { |