소스 검색

* Comments

svn: 1884
Bryan Drewery 21 년 전
부모
커밋
6021371ec3
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      src/match.c

+ 3 - 0
src/match.c

@@ -36,6 +36,7 @@
 #define MATCH (match+sofar)
 #define PERMATCH (match+saved+sofar)
 
+/* binds matching */
 int _wild_match_per(register unsigned char *m, register unsigned char *n)
 {
   /* null strings should never match */
@@ -131,6 +132,8 @@ int _wild_match_per(register unsigned char *m, register unsigned char *n)
   return (*m) ? NOMATCH : PERMATCH;     /* End of both = match */
 }
 
+
+/* general/host matching */
 int _wild_match(register unsigned char *m, register unsigned char *n)
 {
   unsigned char *ma = m, *na = n;