mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-13 14:40:22 +00:00
Back out ctype fix, unneded with new ctype
This commit is contained in:
parent
a73699e164
commit
c31c20bb26
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3459
@ -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 : '?';
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user