@@ -1165,17 +1165,17 @@ fn sync_one_file(c: &Cargo, dir: &Path, src: @Source) -> bool {
1165
1165
let r = pgp:: verify( & c. root, & pkgfile, & sigfile) ;
1166
1166
1167
1167
if !r {
1168
- error( fmt!( "signature verification failed for source %s with key %s" ,
1169
- name, f) ) ;
1168
+ error( fmt!( "signature verification failed for source %s with \
1169
+ key %s" , name, f) ) ;
1170
1170
return false;
1171
1171
}
1172
1172
1173
1173
if has_src_file {
1174
1174
let e = pgp:: verify( & c. root, & srcfile, & srcsigfile) ;
1175
1175
1176
1176
if !e {
1177
- error( fmt!( "signature verification failed for source %s with key %s" ,
1178
- name, f) ) ;
1177
+ error( fmt!( "signature verification failed for source %s \
1178
+ with key %s" , name, f) ) ;
1179
1179
return false;
1180
1180
}
1181
1181
}
@@ -1276,8 +1276,8 @@ fn sync_one_git(c: &Cargo, dir: &Path, src: @Source) -> bool {
1276
1276
let r = pgp:: verify ( & c. root , & pkgfile, & sigfile) ;
1277
1277
1278
1278
if !r {
1279
- error ( fmt ! ( "signature verification failed for source %s with key %s" ,
1280
- name, f) ) ;
1279
+ error ( fmt ! ( "signature verification failed for source %s with \
1280
+ key %s" , name, f) ) ;
1281
1281
rollback ( name, dir, false ) ;
1282
1282
return false ;
1283
1283
}
@@ -1286,8 +1286,8 @@ fn sync_one_git(c: &Cargo, dir: &Path, src: @Source) -> bool {
1286
1286
let e = pgp:: verify ( & c. root , & srcfile, & srcsigfile) ;
1287
1287
1288
1288
if !e {
1289
- error ( fmt ! ( "signature verification failed for source %s with key %s" ,
1290
- name, f) ) ;
1289
+ error ( fmt ! ( "signature verification failed for source %s \
1290
+ with key %s" , name, f) ) ;
1291
1291
rollback ( name, dir, false ) ;
1292
1292
return false ;
1293
1293
}
@@ -1373,8 +1373,8 @@ fn sync_one_curl(c: &Cargo, dir: &Path, src: @Source) -> bool {
1373
1373
let r = pgp:: verify ( & c. root , & pkgfile, & sigfile) ;
1374
1374
1375
1375
if !r {
1376
- error ( fmt ! ( "signature verification failed for source %s with key %s" ,
1377
- name, f) ) ;
1376
+ error ( fmt ! ( "signature verification failed for source %s with \
1377
+ key %s" , name, f) ) ;
1378
1378
return false ;
1379
1379
}
1380
1380
0 commit comments