summaryrefslogtreecommitdiff
path: root/src/mailq.cc
diff options
context:
space:
mode:
authorBruce Guenter <bruce@untroubled.org>2007-10-09 15:47:21 -0600
committerBruce Guenter <bruce@untroubled.org>2007-10-09 15:47:21 -0600
commitc3dd869824827c2ddf74a5d45f7177912bdb81dd (patch)
treeffe4cc1f81ad64bb5a312e7a634989d1cadc4540 /src/mailq.cc
parentbd8c99e3898710b542fd5a6f08f98ffdf3e933f8 (diff)
Fixed a double space in the mailq output, and added a test script.
Diffstat (limited to 'src/mailq.cc')
-rw-r--r--src/mailq.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailq.cc b/src/mailq.cc
index b227aad..998446c 100644
--- a/src/mailq.cc
+++ b/src/mailq.cc
@@ -48,7 +48,7 @@ int main(int, char*[])
continue;
time_t time = atoi(name);
char timebuf[100];
- strftime(timebuf, 100, "%Y-%m-%d %H:%M:%S ", localtime(&time));
+ strftime(timebuf, 100, "%Y-%m-%d %H:%M:%S ", localtime(&time));
fout << timebuf;
struct stat statbuf;
if(stat(name, &statbuf) == -1)