make subcommand subfunction that were missed previously
[monkeysphere.git] / src / subcommands / ma / list-certifiers
index 789d553225789716a72c01308a87eb2c5f112b92..e920888eb60faa0c41f08251ab7cc1fe63b60f26 100755 (executable)
@@ -12,6 +12,8 @@
 
 # list the host certifiers
 
+list_certifiers() {
+
 local keys
 local key
 
@@ -23,3 +25,5 @@ keys=$(gpg_authentication "--no-options --list-options show-uid-validity --keyri
 for key in $keys ; do
     gpg_authentication "--no-options --list-options show-uid-validity --keyring ${GNUPGHOME_AUTHENTICATION}/pubring.gpg --list-key --fingerprint $key"
 done
+
+}