mirror of
https://github.com/xorgy/mediafire-fuse
synced 2026-01-13 13:14:29 -08:00
22 lines
318 B
C
22 lines
318 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "strings.h"
|
|
#include "mfshell.h"
|
|
#include "private.h"
|
|
#include "command.h"
|
|
|
|
int
|
|
mfshell_cmd_whoami(mfshell_t *mfshell)
|
|
{
|
|
int retval;
|
|
|
|
retval = mfshell->user_get_info(mfshell);
|
|
mfshell->update_secret_key(mfshell);
|
|
|
|
return retval;
|
|
}
|
|
|
|
|