werty1st

werty1st

Oct 27th, 2009
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1.     glob("/etc/openvpn/*.conf", 0, NULL, &gl);
  2.     glob("/etc/openvpn/*.ovpn", GLOB_APPEND, NULL, &gl);
  3.  
  4.     char home[500];  char home2[500];
  5.     strcpy(home,getenv ("HOME")); strcpy(home2,getenv ("HOME"));
  6.     strcat(home,"/.openvpn/*.ovpn"); strcat(home2,"/.openvpn/*.conf");
  7.     glob(home, GLOB_APPEND, NULL, &gl); glob(home2, GLOB_APPEND, NULL, &gl);
Advertisement
Add Comment
Please, Sign In to add comment