diff options
author | Josh Stone <jistone@redhat.com> | 2009-08-10 15:17:35 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-08-10 15:17:35 -0700 |
commit | aeb2727bd6742d8e4ff98882e57078f72da21b68 (patch) | |
tree | 1d8e64e172682055a3c0b8068f8dcf93dcc71042 /runtime/staprun/modverify.c | |
parent | 7f17af5c9ace193eef48246bcadf42ae9650de67 (diff) | |
parent | a09930468b2d2bae134067d50a9b15b5ba2af548 (diff) | |
download | systemtap-steved-aeb2727bd6742d8e4ff98882e57078f72da21b68.tar.gz systemtap-steved-aeb2727bd6742d8e4ff98882e57078f72da21b68.tar.xz systemtap-steved-aeb2727bd6742d8e4ff98882e57078f72da21b68.zip |
Merge branch 'master' of ssh://sourceware.org/git/systemtap
Diffstat (limited to 'runtime/staprun/modverify.c')
-rw-r--r-- | runtime/staprun/modverify.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/staprun/modverify.c b/runtime/staprun/modverify.c index 15447279..6dc192b2 100644 --- a/runtime/staprun/modverify.c +++ b/runtime/staprun/modverify.c @@ -33,6 +33,7 @@ #include "modverify.h" #include <sys/stat.h> +#include <errno.h> /* Function: int check_cert_db_permissions (const char *cert_db_path); * @@ -125,6 +126,10 @@ check_cert_db_permissions (const char *cert_db_path) { rc = stat (cert_db_path, & info); if (rc) { + /* It is ok if the directory does not exist. This simply means that no signing + certificates have been authorized yet. */ + if (errno == ENOENT) + return 0; fprintf (stderr, "Could not obtain information on certificate database directory %s.\n", cert_db_path); perror (""); |