|
|
|
|
|
by IvyMike
4771 days ago
|
|
We can go deeper... if(
b != nil &&
b->qid.type == a->qid.type &&
b->qid.path == a->qid.path &&
b->qid.vers == a->qid.vers &&
b->dev == a->dev &&
b->type == a->type
) {
fprint(2, "cp: %s and %s are the same file\n", an, bn);
ret = 1;
}
(Lined up the "a"s to make it obvious that they're all the same.) |
|