diff options
author | 2005-07-05 16:06:52 +0000 | |
---|---|---|
committer | 2005-07-05 16:06:52 +0000 | |
commit | adf38b2dbab66b4d39008f5daf92ef29889ef34e (patch) | |
tree | a15ea1cce233b415fdea481c7c682bbb36cccace | |
parent | little bit better description of -ml; (diff) | |
download | wireguard-openbsd-adf38b2dbab66b4d39008f5daf92ef29889ef34e.tar.xz wireguard-openbsd-adf38b2dbab66b4d39008f5daf92ef29889ef34e.zip |
`No' -> `no' in output; matches gnu/usr.bin/cvs output;
-rw-r--r-- | usr.bin/cvs/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/status.c b/usr.bin/cvs/status.c index 5aea36ad504..7abf78919b8 100644 --- a/usr.bin/cvs/status.c +++ b/usr.bin/cvs/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.26 2005/06/30 15:24:53 xsa Exp $ */ +/* $OpenBSD: status.c,v 1.27 2005/07/05 16:06:52 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -208,7 +208,7 @@ cvs_status_local(CVSFILE *cf, void *arg) buf[0] = '\0'; if (cf->cf_cvstat == CVS_FST_LOST) - strlcpy(buf, "No file ", sizeof(buf)); + strlcpy(buf, "no file ", sizeof(buf)); strlcat(buf, cf->cf_name, sizeof(buf)); cvs_printf(CVS_STATUS_SEP "\nFile: %-18sStatus: %s\n\n", |