svn commit: samba r7156 - in branches/SAMBA_3_0/examples/libsmbclient: .

derrell at samba.org derrell at samba.org
Tue May 31 23:42:29 GMT 2005


Author: derrell
Date: 2005-05-31 23:42:29 +0000 (Tue, 31 May 2005)
New Revision: 7156

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=7156

Log:
file was missing; svn isn't smart enough to even notify me.  sigh.
Added:
   branches/SAMBA_3_0/examples/libsmbclient/get_auth_data_fn.h


Changeset:
Added: branches/SAMBA_3_0/examples/libsmbclient/get_auth_data_fn.h
===================================================================
--- branches/SAMBA_3_0/examples/libsmbclient/get_auth_data_fn.h	2005-05-31 22:02:44 UTC (rev 7155)
+++ branches/SAMBA_3_0/examples/libsmbclient/get_auth_data_fn.h	2005-05-31 23:42:29 UTC (rev 7156)
@@ -0,0 +1,52 @@
+static void
+get_auth_data_fn(const char * pServer,
+                 const char * pShare,
+                 char * pWorkgroup,
+                 int maxLenWorkgroup,
+                 char * pUsername,
+                 int maxLenUsername,
+                 char * pPassword,
+                 int maxLenPassword)
+    
+{
+    char temp[128];
+    
+    fprintf(stdout, "Workgroup: [%s] ", pWorkgroup);
+    fgets(temp, sizeof(temp), stdin);
+    
+    if (temp[strlen(temp) - 1] == '\n') /* A new line? */
+    {
+        temp[strlen(temp) - 1] = '\0';
+    }
+    
+    if (temp[0] != '\0')
+    {
+        strncpy(pWorkgroup, temp, maxLenWorkgroup - 1);
+    }
+    
+    fprintf(stdout, "Username: [%s] ", pUsername);
+    fgets(temp, sizeof(temp), stdin);
+    
+    if (temp[strlen(temp) - 1] == '\n') /* A new line? */
+    {
+        temp[strlen(temp) - 1] = '\0';
+    }
+    
+    if (temp[0] != '\0')
+    {
+        strncpy(pUsername, temp, maxLenUsername - 1);
+    }
+    
+    fprintf(stdout, "Password: ");
+    fgets(temp, sizeof(temp), stdin);
+    
+    if (temp[strlen(temp) - 1] == '\n') /* A new line? */
+    {
+        temp[strlen(temp) - 1] = '\0';
+    }
+    
+    if (temp[0] != '\0')
+    {
+        strncpy(pPassword, temp, maxLenPassword - 1);
+    }
+}



More information about the samba-cvs mailing list