diff options
author | Kai Tietz <ktietz@redhat.com> | 2012-10-27 12:09:38 +0000 |
---|---|---|
committer | Kai Tietz <ktietz@redhat.com> | 2012-10-27 12:09:38 +0000 |
commit | f71f133bda3077c835de51e76e83f674d45297ae (patch) | |
tree | 7b25597a46498abcfc22873739e9fa9a2893bbd3 /winsup/cygwin/uinfo.cc | |
parent | 0222a24fe394e6fbeb7ee0e94df92f20738e0206 (diff) | |
download | cygnal-f71f133bda3077c835de51e76e83f674d45297ae.tar.gz cygnal-f71f133bda3077c835de51e76e83f674d45297ae.tar.bz2 cygnal-f71f133bda3077c835de51e76e83f674d45297ae.zip |
* dcrt0.cc (quoted): Renamed strechr to strchrnul.
* environ.cc (environ_init): Likewise.
* sec_acl.cc (aclfromtext32): Likewise.
* sec_auth.cc (extract_nt_dom_user): Likewise.
* uinfo.cc (pwdgrp::next_str): Likewise.
* string.h (strechr): Likewise.
Diffstat (limited to 'winsup/cygwin/uinfo.cc')
-rw-r--r-- | winsup/cygwin/uinfo.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/uinfo.cc b/winsup/cygwin/uinfo.cc index a26ccb88e..a83d1080d 100644 --- a/winsup/cygwin/uinfo.cc +++ b/winsup/cygwin/uinfo.cc @@ -489,7 +489,7 @@ char * pwdgrp::next_str (char c) { char *res = lptr; - lptr = strechr (lptr, c); + lptr = strchrnul (lptr, c); if (*lptr) *lptr++ = '\0'; return res; |