Date: Thu Mar 13 22:54:17 CET 2003
User: Derick Rethans
Directory: srm/test/smxs
Log Message:
[0.50]
- Fix problems with include files and the client library.
Modified files:
srm/main/main.c (version: 1.78)
srm/main/srm_config.h.in (version: 1.31)
srm/main/src/functions.c (version: 1.34)
srm/main/src/srm_client.h (version: 1.30)
srm/main/src/srm_ini_parser.y (version: 1.20)
srm/main/src/srm_modules.c (version: 1.70)
srm/main/src/srm_protocol_standard.c (version: 1.73)
srm/main/src/srm_protocols.c (version: 1.9)
srm/modules/auth/auth_parse.c (version: 1.15)
srm/test/smxs/smxsclient.c (version: 1.7)
[FILE: /srm/main/main.c]
--- srm/main/main.c:1.77 Thu Feb 27 05:55:32 2003 GMT
+++ srm/main/main.c Thu Mar 13 20:54:14 2003 GMT
@@ -1,4 +1,4 @@
-/* $Id: cvstemp,v 1.77 2003/02/27 06:55:32 derick Exp $ */
+/* $Id: cvstemp,v 1.78 2003/03/13 21:54:14 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -34,6 +34,7 @@
#include "config.h"
#include "srm_compat.h"
#include "srm_config.h"
+#include "srm_error.h"
#include "ini_parser.h"
#include "srm_modules.h"
#include "srm_protocols.h"
[FILE: /srm/main/srm_config.h.in]
--- srm/main/srm_config.h.in:1.30 Thu Feb 20 19:33:26 2003 GMT
+++ srm/main/srm_config.h.in Thu Mar 13 20:54:14 2003 GMT
@@ -1,4 +1,4 @@
-/* $Id: cvstemp,v 1.30 2003/02/20 20:33:26 derick Exp $ */
+/* $Id: cvstemp,v 1.31 2003/03/13 21:54:14 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -30,7 +30,5 @@
#define SRM_MAJOR_VERSION @SRM_MAJOR_VERSION@
#define SRM_MINOR_VERSION @SRM_MINOR_VERSION@
#define SRM_MICRO_VERSION @SRM_MICRO_VERSION@
-
-#include "srm_error.h"
#endif
[FILE: /srm/main/src/functions.c]
--- srm/main/src/functions.c:1.33 Sun Feb 23 19:20:48 2003 GMT
+++ srm/main/src/functions.c Thu Mar 13 20:54:14 2003 GMT
@@ -1,4 +1,4 @@
-/* $Id: cvstemp,v 1.33 2003/02/23 20:20:48 derick Exp $ */
+/* $Id: cvstemp,v 1.34 2003/03/13 21:54:14 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -24,6 +24,7 @@
#include "srm_config.h"
#include "functions.h"
+#include "srm_error.h"
srm_hash* function_hash;
[FILE: /srm/main/src/srm_client.h]
--- srm/main/src/srm_client.h:1.29 Wed Feb 19 19:40:27 2003 GMT
+++ srm/main/src/srm_client.h Thu Mar 13 20:54:14 2003 GMT
@@ -1,4 +1,4 @@
-/* $Id: cvstemp,v 1.29 2003/02/19 20:40:27 derick Exp $ */
+/* $Id: cvstemp,v 1.30 2003/03/13 21:54:14 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -24,7 +24,6 @@
#define __SRM_CLIENT_H__
#include "functions.h"
-#include "srm_protocol_standard.h"
#include "srm_compat.h"
#include "srm_config.h"
#include "srm_hash.h"
[FILE: /srm/main/src/srm_ini_parser.y]
--- srm/main/src/srm_ini_parser.y:1.19 Thu Feb 20 19:33:27 2003 GMT
+++ srm/main/src/srm_ini_parser.y Thu Mar 13 20:54:14 2003 GMT
@@ -1,5 +1,5 @@
%{
-/* $Id: cvstemp,v 1.19 2003/02/20 20:33:27 derick Exp $ */
+/* $Id: cvstemp,v 1.20 2003/03/13 21:54:14 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -26,6 +26,7 @@
#include <string.h>
#include "srm_value.h"
+#include "srm_error.h"
#include "srm_hash.h"
/* Variables needed during parsing */
[FILE: /srm/main/src/srm_modules.c]
--- srm/main/src/srm_modules.c:1.69 Sun Feb 16 12:02:19 2003 GMT
+++ srm/main/src/srm_modules.c Thu Mar 13 20:54:14 2003 GMT
@@ -1,4 +1,4 @@
-/* $Id: cvstemp,v 1.69 2003/02/16 13:02:19 derick Exp $ */
+/* $Id: cvstemp,v 1.70 2003/03/13 21:54:14 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -30,6 +30,7 @@
#include "config.h"
#include "ini_parser.h"
#include "srm_compat.h"
+#include "srm_error.h"
#include "srm_modules.h"
#include "srm_hash.h"
[FILE: /srm/main/src/srm_protocol_standard.c]
--- srm/main/src/srm_protocol_standard.c:1.72 Sun Feb 23 19:22:32 2003 GMT
+++ srm/main/src/srm_protocol_standard.c Thu Mar 13 20:54:14 2003 GMT
@@ -1,4 +1,4 @@
-/* $Id: cvstemp,v 1.72 2003/02/23 20:22:32 derick Exp $ */
+/* $Id: cvstemp,v 1.73 2003/03/13 21:54:14 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -27,6 +27,7 @@
#include "config.h"
#include "srm_client.h"
#include "srm_config.h"
+#include "srm_error.h"
#include "srm_protocol_standard.h"
#include "srm_protocols.h"
[FILE: /srm/main/src/srm_protocols.c]
--- srm/main/src/srm_protocols.c:1.8 Thu Feb 20 18:06:10 2003 GMT
+++ srm/main/src/srm_protocols.c Thu Mar 13 20:54:15 2003 GMT
@@ -1,4 +1,4 @@
-/* $Id: cvstemp,v 1.8 2003/02/20 19:06:10 derick Exp $ */
+/* $Id: cvstemp,v 1.9 2003/03/13 21:54:15 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -30,6 +30,7 @@
#include <string.h>
#include <sys/stat.h>
+#include "srm_error.h"
#include "srm_protocols.h"
#define SRM_MAX_PROTOCOLS 32
[FILE: /srm/modules/auth/auth_parse.c]
--- srm/modules/auth/auth_parse.c:1.14 Thu Feb 20 19:33:29 2003 GMT
+++ srm/modules/auth/auth_parse.c Thu Mar 13 20:54:16 2003 GMT
@@ -1,4 +1,4 @@
-/* $Id: cvstemp,v 1.14 2003/02/20 20:33:29 derick Exp $ */
+/* $Id: cvstemp,v 1.15 2003/03/13 21:54:16 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -40,6 +40,7 @@
#include "srm_value.h"
#include "srm_auth.h"
#include "srm_config.h"
+#include "srm_error.h"
extern int errno;
[FILE: /srm/test/smxs/smxsclient.c]
--- srm/test/smxs/smxsclient.c:1.6 Thu Feb 20 19:33:36 2003 GMT
+++ srm/test/smxs/smxsclient.c Thu Mar 13 20:54:17 2003 GMT
@@ -1,4 +1,4 @@
-/* $Id: cvstemp,v 1.6 2003/02/20 20:33:36 derick Exp $ */
+/* $Id: cvstemp,v 1.7 2003/03/13 21:54:17 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -50,7 +50,8 @@
host.family = AF_UNIX;
}
} else {
- srm_fmt_message (LL_USAGE, "Usage", "smxsclient [ ( hort port ) | ( socket UNIX ) ]");
+ printf("Usage: smxsclient [ ( hort port ) | ( socket UNIX ) ]\n\n");
+ exit(0);
}
/* We set the connect_data to NULL so that SRM will create one */
Received on Thu Mar 13 22:54:20 2003
This archive was generated by hypermail 2.1.8 : Tue Jan 06 2009 - 09:00:03 CET