~mrooney/ecryptfs/nautilus-integration

« back to all changes in this revision

Viewing changes to src/utils/ecryptfs_zombie_list.c

  • Committer: mhalcrow@us.ibm.com
  • Date: 2007-11-06 22:56:01 UTC
  • Revision ID: git-v1:f8357de9d554b274497b5cce9db4347254b7e7eb
Initial import of eCryptfs filesystem userspace utilities (mount helper, daemon component,
etc.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "config.h"
 
2
#include <stdio.h>
 
3
#include <ecryptfs.h>
 
4
 
 
5
int main()
 
6
{
 
7
        int rc;
 
8
 
 
9
        if ((rc = ecryptfs_list_zombie_session_placeholders())) {
 
10
                printf("Error listing zombie placeholders; rc = [%d]\n", rc);
 
11
                goto out;
 
12
        }
 
13
out:
 
14
        return rc;
 
15
}