Re: cifs buglet - take 2
| Newsgroups | gmane.os.plan9.general |
|---|---|
| Message-ID | <[email protected]> |
thanks!
> while(got > 0 && strcmp(fi[0].name, ".") == 0 || strcmp(fi[0].name, "..") == 0){
that looks like a bug to me. you ment to write the following instead?
while(got > 0 && (strcmp(fi[0].name, ".") == 0 || strcmp(fi[0].name, "..") == 0)){
--
cinap