aboutsummaryrefslogtreecommitdiff
path: root/bin/dd
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1997-11-11 20:35:29 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1997-11-11 20:35:29 +0000
commit1898febe2d3a6f07b2f22ef8cdcf10e2963bc40b (patch)
tree94c23d23c92176a904e2dba4c5f47134878aacd3 /bin/dd
parentd2bb1901e76c8070fbd8d60875b5dc590176622f (diff)
downloadsrc-1898febe2d3a6f07b2f22ef8cdcf10e2963bc40b.tar.gz
src-1898febe2d3a6f07b2f22ef8cdcf10e2963bc40b.zip
Sort "sparse" into alphabetical order, since dd's `conv' options need
to be sorted. This temporarily broke the "osync" option.
Notes
Notes: svn path=/head/; revision=31120
Diffstat (limited to 'bin/dd')
-rw-r--r--bin/dd/args.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/dd/args.c b/bin/dd/args.c
index f1e556a56ad0..a12f46447f66 100644
--- a/bin/dd/args.c
+++ b/bin/dd/args.c
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: args.c,v 1.9 1997/10/08 12:10:33 eivind Exp $
+ * $Id: args.c,v 1.10 1997/10/11 20:09:04 joerg Exp $
*/
#ifndef lint
@@ -283,8 +283,8 @@ static struct conv {
{ "oldascii", C_ASCII, C_EBCDIC, e2a_32V },
{ "oldebcdic", C_EBCDIC, C_ASCII, a2e_32V },
{ "oldibm", C_EBCDIC, C_ASCII, a2ibm_32V },
- { "sparse", C_SPARSE, 0, NULL },
{ "osync", C_OSYNC, C_BS, NULL },
+ { "sparse", C_SPARSE, 0, NULL },
{ "swab", C_SWAB, 0, NULL },
{ "sync", C_SYNC, 0, NULL },
{ "ucase", C_UCASE, C_LCASE, NULL },