diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-11-30 14:29:23 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-11-30 14:29:23 +0000 |
commit | 7fee0ad791494c74a1feafceaa21f0853ef0563a (patch) | |
tree | 3749d12e13574f1f439673ea316bff4e8f3c162d /usr.bin/rcs/co.c | |
parent | 225feb19bb7614b52ea37235b84ddfa0fe363ed6 (diff) |
writeable -> writable
Diffstat (limited to 'usr.bin/rcs/co.c')
-rw-r--r-- | usr.bin/rcs/co.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rcs/co.c b/usr.bin/rcs/co.c index 6b33160e35e..279a773ad5e 100644 --- a/usr.bin/rcs/co.c +++ b/usr.bin/rcs/co.c @@ -1,4 +1,4 @@ -/* $OpenBSD: co.c,v 1.39 2005/11/29 11:11:39 xsa Exp $ */ +/* $OpenBSD: co.c,v 1.40 2005/11/30 14:29:22 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -259,12 +259,12 @@ checkout_rev(RCSFILE *file, RCSNUM *frev, const char *dst, int flags, yn = 0; if (verbose == 0) { cvs_log(LP_ERR, - "writeable %s exists; checkout aborted", + "writable %s exists; checkout aborted", dst); return (-1); } while (yn != 'y' && yn != 'n') { - printf("writeable %s exists; ", dst); + printf("writable %s exists; ", dst); printf("remove it? [ny](n): "); fflush(stdout); yn = getchar(); |