Fixed.
authorueno <ueno>
Tue, 18 Apr 2006 10:01:18 +0000 (10:01 +0000)
committerueno <ueno>
Tue, 18 Apr 2006 10:01:18 +0000 (10:01 +0000)
epa.el

diff --git a/epa.el b/epa.el
index 61b26fa..089aee0 100644 (file)
--- a/epa.el
+++ b/epa.el
@@ -493,7 +493,7 @@ If no one is selected, symmetric encryption will be performed.  "))))
   (interactive "fFile: ")
   (let ((context (epg-make-context)))
     (message "Importing %s..." (file-name-nondirectory file))
-    (epg-import-keys context file)
+    (epg-import-keys-from-file context file)
     (apply #'epa-list-keys epa-list-keys-arguments)
     (message "Importing %s...done" (file-name-nondirectory file))))
 
@@ -518,7 +518,7 @@ If no one is selected, symmetric encryption will be performed.  "))))
             default-name)))))
   (let ((context (epg-make-context)))
     (message "Exporting to %s..." (file-name-nondirectory file))
-    (epg-export-keys context keys file)
+    (epg-export-keys-to-file context keys file)
     (message "Exporting to %s...done" (file-name-nondirectory file))))
 
 (provide 'epa)