aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ctm
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1994-11-27 16:01:29 +0000
committerBruce Evans <bde@FreeBSD.org>1994-11-27 16:01:29 +0000
commit8a3c1b369a6c5d54336bf8d97a802e20455733e0 (patch)
treee06ff2eced583fd395699d34ef9a6cea2c01a1c4 /usr.sbin/ctm
parent7b9754ed1f460f51c9aebe901f427423ce7ad45d (diff)
downloadsrc-8a3c1b369a6c5d54336bf8d97a802e20455733e0.tar.gz
src-8a3c1b369a6c5d54336bf8d97a802e20455733e0.zip
Fix syntax errors (0 = foo()).
Notes
Notes: svn path=/head/; revision=4839
Diffstat (limited to 'usr.sbin/ctm')
-rw-r--r--usr.sbin/ctm/ctm/ctm_pass3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ctm/ctm/ctm_pass3.c b/usr.sbin/ctm/ctm/ctm_pass3.c
index 814d68050ef1..919c69d847ce 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.4 1994/09/22 02:49:20 phk Exp $
+ * $Id: ctm_pass3.c,v 1.5 1994/11/26 08:57:42 phk Exp $
*
*/
@@ -158,11 +158,11 @@ Pass3(FILE *fd)
continue;
}
if(!strcmp(sp->Key,"FR")) {
- if (0 = unlink(name))
+ if (0 == unlink(name))
continue;
}
if(!strcmp(sp->Key,"DR")) {
- if (0 = rmdir(name))
+ if (0 == rmdir(name))
continue;
#ifdef NOTDEF
sprintf(buf,"rm -rf %s",name);