Skip to content

Commit 6f1ff75

Browse files
committed
---
yaml --- r: 41835 b: refs/heads/master c: 1f85c71 h: refs/heads/master i: 41833: fa17f5c 41831: 3ccab04 v: v3
1 parent 2eb0a14 commit 6f1ff75

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 1280a64089358d679e010e48dcd18a3d6657d52e
2+
refs/heads/master: 1f85c711aff340ac8da97b944e8f202219327f15
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
55
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650

trunk/src/libcargo/pgp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ fn verify(root: &Path, data: &Path, sig: &Path) -> bool {
106106
let path = root.push("gpg");
107107
let res = gpgv(~[~"--homedir", path.to_str(),
108108
~"--keyring", ~"pubring.gpg",
109-
~"--verbose",
109+
~"--verify",
110110
sig.to_str(), data.to_str()]);
111111
if res.status != 0 {
112112
return false;

trunk/src/libcore/send_map.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,8 +474,12 @@ pub mod linear {
474474
}
475475

476476
impl <T: Hash IterBytes Eq> LinearSet<T>: Eq {
477-
pure fn eq(&self, other: &LinearSet<T>) -> bool { self.map == other.map }
478-
pure fn ne(&self, other: &LinearSet<T>) -> bool { self.map != other.map }
477+
pure fn eq(&self, other: &LinearSet<T>) -> bool {
478+
self.map == other.map
479+
}
480+
pure fn ne(&self, other: &LinearSet<T>) -> bool {
481+
self.map != other.map
482+
}
479483
}
480484

481485
impl <T: Hash IterBytes Eq> LinearSet<T>: Set<T> {

0 commit comments

Comments
 (0)