diff options
Diffstat (limited to 'usr.bin/ctfconv')
-rwxr-xr-x | usr.bin/ctfconv/ctfstrip | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ctfconv/ctfstrip b/usr.bin/ctfconv/ctfstrip index 945286a996e..4393d05fc04 100755 --- a/usr.bin/ctfconv/ctfstrip +++ b/usr.bin/ctfconv/ctfstrip @@ -1,6 +1,6 @@ #!/bin/sh # -# $OpenBSD: ctfstrip,v 1.5 2017/08/12 19:51:17 jasper Exp $ +# $OpenBSD: ctfstrip,v 1.6 2017/08/13 15:28:51 visa Exp $ # # Copyright (c) 2017 Martin Pieuchot # @@ -39,7 +39,7 @@ for arg in "$@"; do -S) STRIPFLAG=-g; shift; continue;; esac shift - set -- "$@" "$arg" + set -- "$@" "$INFILE" INFILE="$arg" done |