summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1998-11-22 22:50:36 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1998-11-22 22:50:36 +0000
commit6eec0e9b0ca67faaacd87ae6e97858dcd37fa0d3 (patch)
tree611e127e8ea639aa4171d8ff198793303a100e61 /usr.sbin
parent674ed7a5a8a9349393958d3ad2085fcddc4c4cf4 (diff)
please -Wall
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/ctm/ctm/ctm_pass3.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/ctm/ctm/ctm_pass3.c b/usr.sbin/ctm/ctm/ctm_pass3.c
index 11e1432a55a..52def7dc77b 100644
--- a/usr.sbin/ctm/ctm/ctm_pass3.c
+++ b/usr.sbin/ctm/ctm/ctm_pass3.c
@@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
- * $Id: ctm_pass3.c,v 1.1 1996/10/30 17:32:58 graichen Exp $
+ * $Id: ctm_pass3.c,v 1.2 1998/11/22 22:50:35 deraadt Exp $
*
*/
@@ -139,10 +139,11 @@ Pass3(FILE *fd)
case CTM_F_Gid: GETFIELDCOPY(gid,sep); break;
case CTM_F_Mode: GETFIELDCOPY(mode,sep); break;
case CTM_F_MD5:
- if(j & CTM_Q_MD5_Before)
+ if(j & CTM_Q_MD5_Before) {
GETFIELDCOPY(md5before,sep);
- else
+ } else {
GETFIELDCOPY(md5,sep);
+ }
break;
case CTM_F_Count: GETBYTECNT(cnt,sep); break;
case CTM_F_Bytes: GETDATA(trash,cnt); break;