Fix put-string! and put-sexp!.

Thanks to Seth Alves for reporting the bug and providing a patch.
This commit is contained in:
2013-07-17 09:07:46 -07:00
parent f1f2e2a663
commit 7b32156467

View File

@@ -187,7 +187,7 @@
content-length: object-length no-xml: #t))
(define (put-string! bucket key string)
(put-object! bucket key (lambda () string) (string-length string) "text/plain"))
(put-object! bucket key (lambda () (display string)) (string-length string) "text/plain"))
(define (put-sexp! bucket key sexp)
(let-values (((res request-uri response) (put-string! bucket key (->string sexp))))
@@ -212,4 +212,4 @@
(define (delete-object! bucket key)
(perform-aws-request bucket: bucket path: key no-xml: #t verb: "DELETE"))
)
)