shadow: End duplicate warnings with new lines.
The change from formatted message causes the line to no longer automatically be ended. This will need to be reverted once again, when duplicate names become hard errors. * gnu/system/shadow.scm (assert-unique-account-names) (assert-unique-group-names): End format strings in ~%.master
parent
eb11e1e180
commit
239af11a69
|
@ -251,7 +251,7 @@ through the internal use of hash tables."
|
||||||
(() *unspecified*)
|
(() *unspecified*)
|
||||||
(duplicates
|
(duplicates
|
||||||
(warning
|
(warning
|
||||||
(G_ "the following accounts appear more than once:~{ ~a~}")
|
(G_ "the following accounts appear more than once:~{ ~a~}~%")
|
||||||
duplicates))))
|
duplicates))))
|
||||||
|
|
||||||
(define (assert-unique-group-names groups)
|
(define (assert-unique-group-names groups)
|
||||||
|
@ -259,7 +259,7 @@ through the internal use of hash tables."
|
||||||
(() *unspecified*)
|
(() *unspecified*)
|
||||||
(duplicates
|
(duplicates
|
||||||
(warning
|
(warning
|
||||||
(G_ "the following groups appear more than once:~{ ~a~}")
|
(G_ "the following groups appear more than once:~{ ~a~}~%")
|
||||||
duplicates))))
|
duplicates))))
|
||||||
|
|
||||||
(define (assert-valid-users/groups users groups)
|
(define (assert-valid-users/groups users groups)
|
||||||
|
|
Reference in New Issue