aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1994-10-09 15:25:23 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1994-10-09 15:25:23 +0000
commitc31c20bb269d139268947cbaae78fd7d1008f4c7 (patch)
tree85eed774e8ad30a36bb593c23e525b417ee80843 /bin
parenta73699e1646b6ce58a70591e17a886c4982318a6 (diff)
Notes
Diffstat (limited to 'bin')
-rw-r--r--bin/ls/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ls/util.c b/bin/ls/util.c
index 4e8f59951079..e436c922ff61 100644
--- a/bin/ls/util.c
+++ b/bin/ls/util.c
@@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: util.c,v 1.3 1994/09/24 02:55:58 davidg Exp $
*/
#ifndef lint
@@ -60,7 +60,7 @@ prcopy(src, dest, len)
int ch;
while (len--) {
- ch = *src++ & 0xff;
+ ch = *src++;
*dest++ = isprint(ch) ? ch : '?';
}
}