about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-10-17 12:16:57 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-10-17 12:17:49 -0700
commitf2544d8d80f20e9c1e39c3c455b18ebe1922d1d5 (patch)
treeceed6bafa3d91b6c2ed4def8ff54f7d7e9a1a3b0
parentb532a8e5856d525bb7121f4bc00603b91bc2cc5d (diff)
downloadrust-f2544d8d80f20e9c1e39c3c455b18ebe1922d1d5.tar.gz
rust-f2544d8d80f20e9c1e39c3c455b18ebe1922d1d5.zip
Fix long lines
-rw-r--r--src/cargo/cargo.rs20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/cargo/cargo.rs b/src/cargo/cargo.rs
index 322d7800420..a06eb19910b 100644
--- a/src/cargo/cargo.rs
+++ b/src/cargo/cargo.rs
@@ -1165,8 +1165,8 @@ fn sync_one_file(c: &Cargo, dir: &Path, src: @Source) -> bool {
             let r = pgp::verify(&c.root, &pkgfile, &sigfile);
 
             if !r {
-                error(fmt!("signature verification failed for source %s with key %s",
-                          name, f));
+                error(fmt!("signature verification failed for source %s with \
+                            key %s", name, f));
                 return false;
             }
 
@@ -1174,8 +1174,8 @@ fn sync_one_file(c: &Cargo, dir: &Path, src: @Source) -> bool {
                 let e = pgp::verify(&c.root, &srcfile, &srcsigfile);
 
                 if !e {
-                    error(fmt!("signature verification failed for source %s with key %s",
-                              name, f));
+                    error(fmt!("signature verification failed for source %s \
+                                with key %s", name, f));
                     return false;
                 }
             }
@@ -1276,8 +1276,8 @@ fn sync_one_git(c: &Cargo, dir: &Path, src: @Source) -> bool {
             let r = pgp::verify(&c.root, &pkgfile, &sigfile);
 
             if !r {
-                error(fmt!("signature verification failed for source %s with key %s",
-                          name, f));
+                error(fmt!("signature verification failed for source %s with \
+                            key %s", name, f));
                 rollback(name, dir, false);
                 return false;
             }
@@ -1286,8 +1286,8 @@ fn sync_one_git(c: &Cargo, dir: &Path, src: @Source) -> bool {
                 let e = pgp::verify(&c.root, &srcfile, &srcsigfile);
 
                 if !e {
-                    error(fmt!("signature verification failed for source %s with key %s",
-                              name, f));
+                    error(fmt!("signature verification failed for source %s \
+                                with key %s", name, f));
                     rollback(name, dir, false);
                     return false;
                 }
@@ -1373,8 +1373,8 @@ fn sync_one_curl(c: &Cargo, dir: &Path, src: @Source) -> bool {
             let r = pgp::verify(&c.root, &pkgfile, &sigfile);
 
             if !r {
-                error(fmt!("signature verification failed for source %s with key %s",
-                          name, f));
+                error(fmt!("signature verification failed for source %s with \
+                            key %s", name, f));
                 return false;
             }