Do you believe in fate?


View Poll Results: Do you believe in fate?
No 14 53.85%
Yes 8 30.77%
Am not sure 4 15.38%
I don't think about that at all 1 3.85%
Multiple Choice Poll. Voters: 26. This poll is closed

 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Do you believe in fate?
Prev   Next
# 1  
Old 09-20-2010
Do you believe in fate?

Time for a poll rather descriptive poll. Please vote and in add in your comments. :D
 
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

Dan Gilmor: Key battles forge fate of free software

http://www.siliconvalley.com/mld/siliconvalley/business/columnists/dan_gillmor/5911376.htm FREEDOM DINGED: The free-software movement has surmounted all kinds of obstacles in its short history, moving from a political statement to a prominent position inside the world's largest... (0 Replies)
Discussion started by: Neo
0 Replies
Login or Register to Ask a Question
PAM_GETENVLIST(3)						 Linux-PAM Manual						 PAM_GETENVLIST(3)

NAME
pam_getenvlist - getting the PAM environment SYNOPSIS
#include <security/pam_appl.h> char **pam_getenvlist(pam_handle_t *pamh); DESCRIPTION
The pam_getenvlist function returns a complete copy of the PAM environment as associated with the handle pamh. The PAM environment variables represent the contents of the regular environment variables of the authenticated user when service is granted. The format of the memory is a malloc()'d array of char pointers, the last element of which is set to NULL. Each of the non-NULL entries in this array point to a NUL terminated and malloc()'d char string of the form: "name=value". It should be noted that this memory will never be free()'d by libpam. Once obtained by a call to pam_getenvlist, it is the responsibility of the calling application to free() this memory. It is by design, and not a coincidence, that the format and contents of the returned array matches that required for the third argument of the execle(3) function call. RETURN VALUES
The pam_getenvlist function returns NULL on failure. SEE ALSO
pam_start(3), pam_getenv(3), pam_putenv(3), pam(8) Linux-PAM Manual 09/19/2013 PAM_GETENVLIST(3)