Skip to content

Commit a028658

Browse files
committed
BOOTP: Fix a typo in a macro name
[skip ci]
1 parent 38050da commit a028658

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

print-bootp.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ struct bootp {
148148
#define TAG_NIS_P_DOMAIN ((uint8_t) 64)
149149
#define TAG_NIS_P_SERVERS ((uint8_t) 65)
150150
#define TAG_MOBILE_HOME ((uint8_t) 68)
151-
#define TAG_SMPT_SERVER ((uint8_t) 69)
151+
#define TAG_SMTP_SERVER ((uint8_t) 69)
152152
#define TAG_POP3_SERVER ((uint8_t) 70)
153153
#define TAG_NNTP_SERVER ((uint8_t) 71)
154154
#define TAG_WWW_SERVER ((uint8_t) 72)
@@ -470,7 +470,7 @@ static const struct tok tag2str[] = {
470470
{ TAG_NIS_P_DOMAIN, "sN+D" },
471471
{ TAG_NIS_P_SERVERS, "iN+S" },
472472
{ TAG_MOBILE_HOME, "iMH" },
473-
{ TAG_SMPT_SERVER, "iSMTP" },
473+
{ TAG_SMTP_SERVER, "iSMTP" },
474474
{ TAG_POP3_SERVER, "iPOP3" },
475475
{ TAG_NNTP_SERVER, "iNNTP" },
476476
{ TAG_WWW_SERVER, "iWWW" },

0 commit comments

Comments
 (0)