]> diplodocus.org Git - nmh/blobdiff - mts/smtp/smtp.h
new.c: Order two return statements to match comment.
[nmh] / mts / smtp / smtp.h
index 6bf3f9e9f1da79d283ba9646bba34221f032ede9..6de4e5143e2b20744be06ed65c183386ad90423b 100644 (file)
@@ -1,6 +1,4 @@
-
-/*
- * smtp.h -- definitions for the nmh SMTP Interface
+/* smtp.h -- definitions for the nmh SMTP Interface
  */
 
 /* length is the length of the string in text[], which is also NUL
@@ -137,7 +135,7 @@ char *rp_string (int);
 
 
 /*
- * SPECIFIC FALURE VALUES
+ * SPECIFIC FAILURE VALUES
  */
 
 /*
@@ -171,14 +169,6 @@ char *rp_string (int);
 #define RP_USER (RP_BNO | RP_CUSR | '\000')
 
 
-/*
- * Macros to access reply info
- */
-
-/* get the entire return value */
-#define rp_gval(val)    ((signed char) (val))
-
-
 /*
  * MACHINE DEPENDENCY
  *
@@ -188,5 +178,4 @@ char *rp_string (int);
  */
 
 /* is return value negative? */
-#define rp_isbad(val)   (rp_gval (val) < 0)
-
+#define rp_isbad(val)   (((signed char)(val)) < 0)