summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1994-10-09 15:25:23 +0000
committerache <ache@FreeBSD.org>1994-10-09 15:25:23 +0000
commite0df6f34b872fe102ae8bca83de853062d740c79 (patch)
tree85eed774e8ad30a36bb593c23e525b417ee80843 /bin
parentff00733418d03ce2b741282b4d4d5e975b7ef736 (diff)
downloadFreeBSD-src-e0df6f34b872fe102ae8bca83de853062d740c79.zip
FreeBSD-src-e0df6f34b872fe102ae8bca83de853062d740c79.tar.gz
Back out ctype fix, unneded with new ctype
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 4e8f599..e436c92 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 : '?';
}
}
OpenPOWER on IntegriCloud