diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-08-02 12:08:14 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-08-02 12:08:14 +0000 |
commit | 07a622ae7400af67440d62bd8739c84c92916e73 (patch) | |
tree | 4b3d4a186cf4a695222417e6cbd49117cc331190 /usr.bin/cvs/resp.c | |
parent | f63b07d716e250332d708cdd73cc5be85d26b42f (diff) |
oops, missing variable;
Diffstat (limited to 'usr.bin/cvs/resp.c')
-rw-r--r-- | usr.bin/cvs/resp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/resp.c b/usr.bin/cvs/resp.c index 6eb3bd38800..674fb7eabb2 100644 --- a/usr.bin/cvs/resp.c +++ b/usr.bin/cvs/resp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: resp.c,v 1.52 2005/08/02 12:06:38 joris Exp $ */ +/* $OpenBSD: resp.c,v 1.53 2005/08/02 12:08:13 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -418,6 +418,7 @@ cvs_resp_sticky(struct cvsroot *root, int type, char *line) static int cvs_resp_createdir(char *line) { + int l; CVSFILE *base, *cf; CVSENTRIES *entf; struct stat st; |