summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@scratchpost.org>2017-07-02 12:09:47 +0200
committerDanny Milosavljevic <dannym@scratchpost.org>2017-07-02 19:27:25 +0200
commit9c0a05b31edfdc31de09997f65d48e6a7f0f3747 (patch)
treef86733946c08df0b1cbd345fe74172e1fac931f5
parentf277dea2e23bb9e061036ec8d1b4399158059cec (diff)
file-systems: iso9660-uuid->string: Use "-" as separator in the result.
* gnu/build/file-systems.scm (iso9660-uuid->string): Use "-" as separator in the result.
-rw-r--r--gnu/build/file-systems.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index f9cc4088bb2..16160a659b1 100644
--- a/gnu/build/file-systems.scm
+++ b/gnu/build/file-systems.scm
@@ -319,7 +319,7 @@ SBLOCK as a bytevector. If that's not set, returns the creation time."
319 (second (sub-bytevector uuid 12 2)) 319 (second (sub-bytevector uuid 12 2))
320 (hundredths (sub-bytevector uuid 14 2)) 320 (hundredths (sub-bytevector uuid 14 2))
321 (parts (list year month day hour minute second hundredths))) 321 (parts (list year month day hour minute second hundredths)))
322 (string-append (string-join (map digits->string parts))))) 322 (string-append (string-join (map digits->string parts) "-"))))
323 323
324(define (iso9660-superblock-volume-name sblock) 324(define (iso9660-superblock-volume-name sblock)
325 "Return the volume name of SBLOCK as a string. The volume name is an ASCII 325 "Return the volume name of SBLOCK as a string. The volume name is an ASCII