Procházet zdrojové kódy

Think I've got the encoding working - will experiment to test.

Jordan před 11 roky
rodič
revize
2ce12aac80
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      email.go

+ 1 - 1
email.go

@@ -198,7 +198,7 @@ func quotePrintEncode(w io.Writer, s string) error {
 			continue
 		} else {
 			//non-printable.. encode it (TODO)
-			if _, err := fmt.Fprintf(w, "%s", string(c)); err != nil {
+			if _, err := fmt.Fprintf(w, "%s%X", "=", c); err != nil {
 				return err
 			}
 			mc++