diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-09-02 19:55:37 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-09-02 19:55:37 +0000 |
commit | c3f89dac6ba5f9022d4dce34ee2bb2eb612577e3 (patch) | |
tree | 1124903221b6023a1ecac63e3c1132bbb841b434 /distrib | |
parent | 86a48dd534bfcc467f6f90aa545e17a110df7004 (diff) |
Fix an occurence of "==" that should be "="; no functional change.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/sets/maketars | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/sets/maketars b/distrib/sets/maketars index fdb50a469cc..f898e264b55 100644 --- a/distrib/sets/maketars +++ b/distrib/sets/maketars @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: maketars,v 1.16 2003/06/02 04:04:32 deraadt Exp $ +# $OpenBSD: maketars,v 1.17 2004/09/02 19:55:36 millert Exp $ # # Copyright (c) 2001 Theo de Raadt # All rights reserved. @@ -27,7 +27,7 @@ RELEASE=$1 -if [ "X${RELEASE}" == "X" ]; then +if [ "X${RELEASE}" = "X" ]; then echo "Usage: `basename $0` <OSREVISION>" exit 1 fi |