소스 검색

fix typo in comment

Roger Dingledine 6 년 전
부모
커밋
2032b9b1b1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/common/compat.c

+ 1 - 1
src/common/compat.c

@@ -2619,7 +2619,7 @@ tor_inet_pton(int af, const char *src, void *dst)
         long r = strtol(src, &next, 16);
         if (next == NULL || next == src) {
           /* The 'next == src' error case can happen on versions of openbsd
-           * where treats "0xfoo" as an error, rather than as "0" followed by
+           * which treat "0xfoo" as an error, rather than as "0" followed by
            * "xfoo". */
           return 0;
         }