From: millert Date: Wed, 8 Jan 2014 16:23:21 +0000 (+0000) Subject: Fix wrapping of usage message for cksum. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=613a6d015f465acef124c10ee25a88982f81c304;p=openbsd Fix wrapping of usage message for cksum. --- diff --git a/bin/md5/md5.c b/bin/md5/md5.c index 0e5f10526ed..2769425ad02 100644 --- a/bin/md5/md5.c +++ b/bin/md5/md5.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md5.c,v 1.63 2014/01/08 16:16:44 millert Exp $ */ +/* $OpenBSD: md5.c,v 1.64 2014/01/08 16:23:21 millert Exp $ */ /* * Copyright (c) 2001,2003,2005-2007,2010,2013,2014 @@ -815,8 +815,8 @@ usage(void) #if !defined(SMALL) if (strcmp(__progname, "cksum") == 0 || strcmp(__progname, "sum") == 0) fprintf(stderr, "usage: %s [-bpqrtx] [-a algorithms] " - "[-c [checklist ...]] [-h hashfile] [-o 1 | 2]\n" - " %*s [-s string] [file ...]\n", + "[-c [checklist ...]] [-h hashfile]\n" + " %*s [-o 1 | 2] [-s string] [file ...]\n", __progname, (int)strlen(__progname), ""); else #endif /* !defined(SMALL) */