[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: rpctrace improvments
From: |
Alfred M. Szmidt |
Subject: |
Re: rpctrace improvments |
Date: |
Sun, 19 Jun 2005 19:03:43 +0200 |
--- utils/rpctrace.c 18 Jun 2005 19:09:30 +0200 1.16
+++ utils/rpctrace.c 18 Jun 2005 19:23:21 +0200
... snip ...
+ n = scandir (arg, &eps, msgids_file_p, NULL);
+ if (n >= 0)
+ {
+ for (int cnt = 0; cnt < n; ++cnt)
+ {
+ char *msgids_file;
+ struct stat st;
And the unused variable ST should obvioulsy not exist there (thanks
Harley!)