Skip to content

Commit 0ffa97e

Browse files
committed
patch 9.0.1832: xxd: reporting wrong version
Problem: xxd: reporting wrong version (after 9.0.1827) Solution: Update version string Signed-off-by: Christian Brabandt <[email protected]>
1 parent 6ad4a60 commit 0ffa97e

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,8 @@ static char *(features[]) =
699699

700700
static int included_patches[] =
701701
{ /* Add new patch number below this line */
702+
/**/
703+
1832,
702704
/**/
703705
1831,
704706
/**/

src/xxd/xxd.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
* 04.02.2020 Add -d for decimal offsets by Aapo Rantalainen
5757
* 14.01.2022 Disable extra newlines with -c0 -p by Erik Auerswald.
5858
* 20.06.2022 Permit setting the variable names used by -i by David Gow
59+
* 31.08.2023 -R never/auto/always prints colored output
5960
*
6061
* (c) 1990-1998 by Juergen Weigert ([email protected])
6162
*
@@ -134,7 +135,7 @@ extern void perror __P((char *));
134135
# endif
135136
#endif
136137

137-
char version[] = "xxd 2022-01-14 by Juergen Weigert et al.";
138+
char version[] = "xxd 2023-08-31 by Juergen Weigert et al.";
138139
#ifdef WIN32
139140
char osver[] = " (Win32)";
140141
#else

0 commit comments

Comments
 (0)